feat(auth): add frontend login and route protection

This commit is contained in:
DS | Schubert 2026-07-02 17:00:50 +02:00
parent 6f7cae9e24
commit 4bc8b20a21
5 changed files with 116 additions and 19 deletions

View file

@ -0,0 +1,15 @@
export default function DashboardPage() {
return (
<main className="min-h-screen bg-slate-100">
<div className="mx-auto max-w-7xl p-8">
<h1 className="text-4xl font-bold">
Olympus Dashboard
</h1>
<p className="mt-4 text-slate-600">
Willkommen bei Funktechnik Schubert.
</p>
</div>
</main>
);
}