mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-23 20:55:50 +00:00
20 lines
343 B
JavaScript
20 lines
343 B
JavaScript
import Head from 'next/head'
|
|
import Link from 'next/link'
|
|
import Layout from '../../components/Layout'
|
|
|
|
const FirstPost = () => (
|
|
<Layout>
|
|
<Head>
|
|
<title>First Post</title>
|
|
</Head>
|
|
<h1>First Post</h1>
|
|
<h2>
|
|
<Link href="/">
|
|
<a>Back to home</a>
|
|
</Link>
|
|
</h2>
|
|
</Layout>
|
|
)
|
|
|
|
export default FirstPost
|