11 lines
No EOL
588 B
TypeScript
11 lines
No EOL
588 B
TypeScript
export default function Header() {
|
|
return (
|
|
<header className="flex h-16 items-center justify-between border-b border-border bg-background/90 backdrop-blur px-6">
|
|
<a href="/" className="text-2xl">🎀</a>
|
|
<div className="flex items-center" id="menu">
|
|
<a href="/add" className="text-[16px] text-foreground/50">[ <span className="text-foreground">+</span> ]</a>
|
|
<a href="/login" className="text-[16px] text-foreground/50">[ <span className="text-foreground">Login</span> ]</a>
|
|
</div>
|
|
</header>
|
|
);
|
|
} |