mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
16 lines
411 B
TypeScript
16 lines
411 B
TypeScript
import LogOutButton from "@/components/log-out-button";
|
|
|
|
function Account() {
|
|
return (
|
|
<main className="w-full h-[100vh] flex flex-col items-center justify-center gap-4 p-4">
|
|
<h1 className="text-3xl font-bold">Account</h1>
|
|
|
|
<p className="text-muted-foreground">Account page here</p>
|
|
|
|
<LogOutButton />
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default Account;
|