diff options
Diffstat (limited to 'pages/about.js')
| -rw-r--r-- | pages/about.js | 17 |
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> ) |
