diff options
Diffstat (limited to 'pages/about.js')
| -rw-r--r-- | pages/about.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pages/about.js b/pages/about.js index 283cfb9..85c459d 100644 --- a/pages/about.js +++ b/pages/about.js @@ -1,14 +1,16 @@ import Meta from '../components/meta' import Image from "next/image"; +import Navigation from '../components/nav' export default function About() { return ( - <div> + <div className="font-hack bg-material-gray text-white"> <Meta title="About Me" description="About Andrew Lee"/> - <div className="font-hack bg-material-gray text-white px-5 py-6 flex flex-row"> + <Navigation/> + <div className="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} /> + <Image src="/Alee.png" className="rounded-full object-center" 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> |
