25 lines
787 B
TypeScript
25 lines
787 B
TypeScript
import Logo from "./Logo";
|
|
|
|
const Header = () => {
|
|
return (
|
|
<header className="fixed top-0 left-0 right-0 z-50 bg-background/95 backdrop-blur-sm border-b border-border">
|
|
<div className="max-w-6xl mx-auto px-6 py-3 flex items-center justify-between">
|
|
<a href="/" className="flex items-center">
|
|
<Logo size="small" />
|
|
</a>
|
|
|
|
<nav className="hidden md:flex items-center gap-8 text-sm">
|
|
<a href="#gallery" className="text-muted-foreground hover:text-primary transition-colors">
|
|
Sortiment
|
|
</a>
|
|
<a href="#plans" className="text-muted-foreground hover:text-primary transition-colors">
|
|
Prenumeration
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
);
|
|
};
|
|
|
|
export default Header;
|