blob: b0c6cff7938ac041d335418cd2fd3635456a9e7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import Head from 'next/head'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div>
<Head>
<title>Andrew Lee</title>
<meta name="description" content="Andrew's personal website" />
<link rel="icon" href="/favicon.ico" />
</Head>
<div className={styles.landing}>
<main className={styles.main}>
<h1 className={styles.title}>
Welcome to <a href="https://nextjs.org">Next.js!</a>
</h1>
</main>
</div>
</div>
)
}
|