mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
20 lines
366 B
JavaScript
20 lines
366 B
JavaScript
import Head from 'next/head'
|
|
import Link from 'next/link'
|
|
import Layout from '../../components/layout'
|
|
|
|
export default function FirstPost() {
|
|
return (
|
|
<Layout>
|
|
<Head>
|
|
<title>First Post</title>
|
|
</Head>
|
|
<h1>First Post</h1>
|
|
<h2>
|
|
<Link href="/">
|
|
<a>Back to home</a>
|
|
</Link>
|
|
</h2>
|
|
</Layout>
|
|
)
|
|
}
|