aboutsummaryrefslogtreecommitdiff
path: root/pages/about.js
diff options
context:
space:
mode:
Diffstat (limited to 'pages/about.js')
-rw-r--r--pages/about.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/pages/about.js b/pages/about.js
deleted file mode 100644
index 85c459d..0000000
--- a/pages/about.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import Meta from '../components/meta'
-import Image from "next/image";
-import Navigation from '../components/nav'
-
-export default function About() {
- return (
- <div className="font-hack bg-material-gray text-white">
- <Meta title="About Me" description="About Andrew Lee"/>
- <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" 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>
- <h2>Description</h2>
- </div>
- </div>
- <div className="bg-green-500">
- <h1>Test 1</h1>
- </div>
- </div>
- </div>
- )
-}