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

@@ -0,0 +1,17 @@
import { Link } from "react-router-dom";
function Organisations() {
return (
<main className="w-full h-[100vh] flex flex-col items-start gap-4 p-4">
<h1 className="text-3xl font-600">Organisations</h1>
<p className="text-muted-foreground">Organisations page here</p>
<Link to="/" className="">
Go to Home
</Link>
</main>
);
}
export default Organisations;