Add basic layout

This commit is contained in:
2021-10-14 20:42:49 +02:00
parent adc12fcae3
commit 471165d949
25 changed files with 662 additions and 265 deletions

View File

@@ -1,15 +1,5 @@
import Link from 'next/link'
import Layout from '../components/Layout'
const IndexPage = () => (
<Layout title="Home | Next.js + TypeScript Example">
<h1>Hello Next.js 👋</h1>
<p>
<Link href="/about">
<a>About</a>
</Link>
</p>
</Layout>
<div>Home</div>
)
export default IndexPage