blob: d079b367abb0a4e98435b01ed41f4321fbd74b1d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import Meta from '../components/meta'
export default function AboutMe() {
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>
</div>
)
}
|