diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-06-11 12:43:36 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-06-11 12:43:36 -0400 |
| commit | d10c26e326330beacf9951933053b373817950e3 (patch) | |
| tree | 7888a79ec9e75b25a0377d9910bdbdf0d6276a5d /pages | |
| parent | 1f9b96db4b39ce57e75eea20ee3c01b982bea182 (diff) | |
| download | personal-website-d10c26e326330beacf9951933053b373817950e3.tar.gz personal-website-d10c26e326330beacf9951933053b373817950e3.tar.bz2 personal-website-d10c26e326330beacf9951933053b373817950e3.zip | |
Tailwind
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/index.js | 14 | ||||
| -rw-r--r-- | pages/tos.js | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/pages/index.js b/pages/index.js index 05c80d0..26b99a7 100644 --- a/pages/index.js +++ b/pages/index.js @@ -4,18 +4,18 @@ import Computer from '../components/computer' export default function Home() { return ( - <div> + <> <Head> <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}>Andrew Lee</h1> - </main> - </div> - </div> + <div className="text-center font-hack font-bold"> + <h1 className={styles.title}>Andrew Lee</h1> + <h2 className={styles.description}>Linux User, Programmer, Computer Nerd</h2> + <h2 className={styles.contact}>Contact me at andrew@alee14.me</h2> + </div> + </> ) } diff --git a/pages/tos.js b/pages/tos.js index 89b7e94..1fabb1f 100644 --- a/pages/tos.js +++ b/pages/tos.js @@ -12,7 +12,7 @@ export default function ToS() { </Head> <div className={styles.container}> <div id="top"/> - <h1 className="text-center display-5 mt-3">Andrew Lee Projects Terms of Service</h1> + <h1 className="text-center">Andrew Lee Projects Terms of Service</h1> <p>These terms of service are set in place to ensure you have a great time being part of our community/services.</p> <div id="community-guidelines"> <h1>Community Guidelines</h1> |
