mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
18 lines
343 B
JavaScript
18 lines
343 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="/">Back to home</Link>
|
|
</h2>
|
|
</Layout>
|
|
);
|
|
}
|