super basic account page with link on Index page

This commit is contained in:
Oliver Bryan
2025-12-27 05:37:58 +00:00
parent f04b8e05c9
commit fb1a7e90d6
4 changed files with 51 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
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;