aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-06-11 16:07:16 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-06-11 16:07:16 -0400
commit3f6c180e7bee816cc5410b2c6bd01e22a6e35910 (patch)
tree678538bafeceb764f2d3a1af95e231b3075963bb /pages
parentd10c26e326330beacf9951933053b373817950e3 (diff)
downloadpersonal-website-3f6c180e7bee816cc5410b2c6bd01e22a6e35910.tar.gz
personal-website-3f6c180e7bee816cc5410b2c6bd01e22a6e35910.tar.bz2
personal-website-3f6c180e7bee816cc5410b2c6bd01e22a6e35910.zip
Website is coming along :eyes:
Diffstat (limited to 'pages')
-rw-r--r--pages/index.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/pages/index.js b/pages/index.js
index 26b99a7..f8a4e36 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -1,6 +1,7 @@
import Head from 'next/head'
import styles from '../styles/Home.module.css'
import Computer from '../components/computer'
+import Image from "next/image";
export default function Home() {
return (
@@ -11,10 +12,11 @@ export default function Home() {
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" href="/favicon.ico" />
</Head>
- <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 className="text-center font-hack font-bold flex flex-col gap-4 items-center justify-center h-screen w-screen bg-material-gray text-white">
+ <Image src="/Alee.svg" alt="Alee Logo" width={210} height={210} />
+ <h1 className="text-4xl">Andrew Lee</h1>
+ <h2 className="text-lg">Linux User, Programmer, Computer Nerd</h2>
+ <h2 className="text-base font-normal">Contact me at andrew@alee14.me</h2>
</div>
</>
)