2021-02-06 02:38:26 +09:00
|
|
|
import Layout from "./components/Layout"
|
2021-02-06 02:31:04 +09:00
|
|
|
import Link from 'next/link'
|
|
|
|
import Image from 'next/image'
|
|
|
|
|
|
|
|
const Index = () => (
|
|
|
|
|
|
|
|
<Layout title="ホーム">
|
2021-02-06 09:36:00 +09:00
|
|
|
<div className="my-9">
|
|
|
|
<Image className="rounded-full"
|
2021-02-06 02:46:15 +09:00
|
|
|
src = "/static/images/avatar.png"
|
|
|
|
alt = "yude's avatar"
|
|
|
|
width = {200}
|
|
|
|
height = {200}
|
|
|
|
unoptimized = {true}
|
2021-02-06 02:31:04 +09:00
|
|
|
/>
|
|
|
|
<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>
|
2021-02-06 09:36:00 +09:00
|
|
|
|
2021-02-06 02:31:04 +09:00
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
|
|
|
|
export default Index
|