mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
21 lines
574 B
JavaScript
21 lines
574 B
JavaScript
import Head from 'next/head';
|
||
import Layout, { siteTitle } from '../components/layout';
|
||
import utilStyles from '../styles/utils.module.css';
|
||
|
||
export default function Home() {
|
||
return (
|
||
<Layout home>
|
||
<Head>
|
||
<title>{siteTitle}</title>
|
||
</Head>
|
||
<section className={utilStyles.headingMd}>
|
||
<p>[Your Self Introduction]</p>
|
||
<p>
|
||
(This is a sample website - you’ll be building a site like this in{' '}
|
||
<a href="https://nextjs.org/learn">our Next.js tutorial</a>.)
|
||
</p>
|
||
</section>
|
||
</Layout>
|
||
);
|
||
}
|