Dashboard und Benutzerverwaltung

This commit is contained in:
Schubert Ferenc 2026-07-02 00:01:25 +02:00
parent c4d27a1187
commit 4cf671e32d
16 changed files with 684 additions and 79 deletions

View file

@ -0,0 +1,23 @@
export default function Header() {
return (
<header className="h-20 bg-white border-b flex items-center justify-between px-8">
<h1 className="text-3xl font-bold">
Dashboard
</h1>
<div className="font-semibold">
admin.schubert
</div>
</header>
);
}