aboutsummaryrefslogtreecommitdiff
path: root/pages/about.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-05-28 13:19:45 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-05-28 13:32:57 -0400
commitb176b9633e09313ffe15136fb4c357289aef47dc (patch)
tree3e3458e822eafad63542174e907684dd62e9d1ee /pages/about.js
parent0ea2d6d6e76ef82b976c2c64714ccd1548b5d3ac (diff)
downloadpersonal-website-b176b9633e09313ffe15136fb4c357289aef47dc.tar.gz
personal-website-b176b9633e09313ffe15136fb4c357289aef47dc.tar.bz2
personal-website-b176b9633e09313ffe15136fb4c357289aef47dc.zip
New logo, New link and Updated Deps
Diffstat (limited to 'pages/about.js')
-rw-r--r--pages/about.js17
1 files changed, 15 insertions, 2 deletions
diff --git a/pages/about.js b/pages/about.js
index d079b36..283cfb9 100644
--- a/pages/about.js
+++ b/pages/about.js
@@ -1,10 +1,23 @@
import Meta from '../components/meta'
+import Image from "next/image";
-export default function AboutMe() {
+export default function About() {
return (
<div>
<Meta title="About Me" description="About Andrew Lee"/>
- <div className="font-hack bg-material-gray text-white px-5 py-6 space-y-5 flex flex-col">
+ <div className="font-hack bg-material-gray text-white px-5 py-6 flex flex-row">
+ <div className="bg-gray-600 px-10 py-5">
+ <div className="font-bold">
+ <Image src="/Alee.png" alt="Alee Logo" width={128} height={128} />
+ <h1 className="text-center text-xl">Andrew Lee</h1>
+ <h2>Age: 18</h2>
+ <h2>Location: Montreal, Canada</h2>
+ <h2>Description</h2>
+ </div>
+ </div>
+ <div className="bg-green-500">
+ <h1>Test 1</h1>
+ </div>
</div>
</div>
)