Olympus/frontend/athena/components/Header.tsx
2026-07-02 00:01:25 +02:00

23 lines
No EOL
362 B
TypeScript

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>
);
}