diff options
Diffstat (limited to 'pages/index.js')
| -rw-r--r-- | pages/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/index.js b/pages/index.js index b0c6cff..05c80d0 100644 --- a/pages/index.js +++ b/pages/index.js @@ -1,19 +1,19 @@ import Head from 'next/head' import styles from '../styles/Home.module.css' +import Computer from '../components/computer' export default function Home() { return ( <div> <Head> - <title>Andrew Lee</title> + <title>Home - Andrew Lee</title> <meta name="description" content="Andrew's personal website" /> + <meta name="viewport" content="width=device-width, initial-scale=1"/> <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> + <h1 className={styles.title}>Andrew Lee</h1> </main> </div> </div> |
