openfood/pages/index.tsx

16 lines
304 B
TypeScript
Raw Normal View History

2021-10-12 21:17:12 +02:00
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>
)
export default IndexPage