mirror of
https://github.com/yude-jp/yude.jp
synced 2025-01-03 10:00:11 +09:00
24 lines
627 B
JavaScript
24 lines
627 B
JavaScript
import Layout from "./components/Layout"
|
|
import Link from 'next/link'
|
|
import Image from 'next/image'
|
|
|
|
const Index = () => (
|
|
|
|
<Layout title="ホーム">
|
|
<div>
|
|
<Image className="avatar"
|
|
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>
|
|
|
|
)
|
|
|
|
export default Index |