Organisations and new Account page

This commit is contained in:
Oliver Bryan
2025-12-27 23:31:59 +00:00
parent 7e84990e49
commit b50640ba7b
4 changed files with 41 additions and 9 deletions

View File

@@ -1,13 +1,15 @@
import LogOutButton from "@/components/log-out-button";
import { Link } from "react-router-dom";
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>
<main className="w-full h-[100vh] flex flex-col items-start gap-4 p-4">
<h1 className="text-3xl font-600">Account</h1>
<p className="text-muted-foreground">Account page here</p>
<LogOutButton />
<Link to="/" className="">
Go to Home
</Link>
</main>
);
}