feat(auth): enterprise authentication and user management

This commit is contained in:
Schubert Ferenc 2026-07-02 22:19:12 +02:00
parent 4bc8b20a21
commit 86a32a942c
36 changed files with 2239 additions and 324 deletions

View file

@ -1,3 +1,5 @@
import LogoutButton from "@/components/LogoutButton";
export default function Header() {
return (
@ -10,14 +12,20 @@ export default function Header() {
</h1>
<div className="font-semibold">
<div className="flex items-center gap-4">
<span className="font-semibold">
admin.schubert
</span>
<LogoutButton />
</div>
</header>
);
}
}