aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'pages/index.js')
-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>
</>
)