0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00
yude.jp/pages/index.js

23 lines
575 B
JavaScript
Raw Normal View History

2021-02-06 02:36:45 +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="ホーム">
<div>
2021-02-06 02:33:01 +09:00
<Image className="avatar"
src = "/static/images/avatar.png"
alt = "yude's avatar"
width = {200}
height = {200}
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>
</Layout>
)
export default Index