31 lines
531 B
TypeScript
31 lines
531 B
TypeScript
import LogoutButton from "@/components/LogoutButton";
|
|
|
|
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="flex items-center gap-4">
|
|
|
|
<span className="font-semibold">
|
|
|
|
admin.schubert
|
|
|
|
</span>
|
|
|
|
<LogoutButton />
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
);
|
|
|
|
}
|