aboutsummaryrefslogtreecommitdiff
path: root/pages/about.js
blob: 85c459def539c9a5a94cab67313d7260412d04c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>
    )
}