cvsa/packages/next/app/[locale]/page.tsx

18 lines
509 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Header } from "@/components/shell/Header";
import { getCurrentUser } from "@/lib/userAuth";
export default async function Home() {
const user = await getCurrentUser();
return (
<>
<Header user={user} />
<main className="flex flex-col items-center justify-center h-full flex-grow gap-8 px-4">
<h1 className="text-4xl font-medium text-center"></h1>
<p>BV号或AV号~</p>
</main>
</>
);
}