mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-22 20:20:09 +09:00
32 lines
899 B
JavaScript
32 lines
899 B
JavaScript
import Layout from "./components/Layout"
|
|
import Navbar from "./components/Navbar"
|
|
import Link from 'next/link'
|
|
import Image from 'next/image'
|
|
|
|
import { useRouter } from 'next/router'
|
|
|
|
export default function About(props) {
|
|
const router = useRouter()
|
|
const { locale, locales, defaultLocale, pathname } = router
|
|
|
|
return (
|
|
|
|
<Layout title="ホーム">
|
|
<Navbar />
|
|
<div className="my-9">
|
|
<p>[Debug] Current locale: {pathname}</p>
|
|
<Image className="rounded-full"
|
|
src = "/static/images/avatar.png"
|
|
alt = "yude's avatar"
|
|
width = {200}
|
|
height = {200}
|
|
unoptimized = {true}
|
|
/>
|
|
<p>🔨 This page is under the construction. 🔨</p>
|
|
<p>For now, please visit <Link href="https://yude.moe"><a>yude.moe</a></Link>.
|
|
</p>
|
|
</div>
|
|
|
|
</Layout>
|
|
)
|
|
} |