diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-02-12 11:42:15 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-02-12 11:42:15 -0500 |
| commit | 1f9b96db4b39ce57e75eea20ee3c01b982bea182 (patch) | |
| tree | be9e1a552b6c5871e293f150749e8cbb6627c476 /pages/index.js | |
| parent | 17d45a625ae06800f9f36ddc304e53ad1740dcf3 (diff) | |
| download | personal-website-1f9b96db4b39ce57e75eea20ee3c01b982bea182.tar.gz personal-website-1f9b96db4b39ce57e75eea20ee3c01b982bea182.tar.bz2 personal-website-1f9b96db4b39ce57e75eea20ee3c01b982bea182.zip | |
More progress
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> |
