aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-06-11 12:43:36 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-06-11 12:43:36 -0400
commitd10c26e326330beacf9951933053b373817950e3 (patch)
tree7888a79ec9e75b25a0377d9910bdbdf0d6276a5d /pages/index.js
parent1f9b96db4b39ce57e75eea20ee3c01b982bea182 (diff)
downloadpersonal-website-d10c26e326330beacf9951933053b373817950e3.tar.gz
personal-website-d10c26e326330beacf9951933053b373817950e3.tar.bz2
personal-website-d10c26e326330beacf9951933053b373817950e3.zip
Tailwind
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js14
1 files changed, 7 insertions, 7 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>
+ </>
)
}