19 lines
518 B
TypeScript
19 lines
518 B
TypeScript
import { Header } from "@/components/shell/Header";
|
|
import { getCurrentUser } from "@/lib/userAuth";
|
|
import { Content } from "@/components/shell/Content";
|
|
|
|
export default async function AboutPage() {
|
|
const user = await getCurrentUser();
|
|
|
|
return (
|
|
<>
|
|
<Header user={user} />
|
|
<main className="flex flex-col items-center min-h-screen gap-8 md:mt-12 relative z-0">
|
|
<div className="w-full lg:w-2/3 xl:w-1/2 content px-8 md:px-12 lg:px-0 mb-8">
|
|
<Content pageID="about" />
|
|
</div>
|
|
</main>
|
|
</>
|
|
);
|
|
}
|