23 lines
No EOL
362 B
TypeScript
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>
|
|
|
|
);
|
|
|
|
} |