Fixed top navigation with logo, desktop links, and mobile hamburger menu. Supports scroll-aware frosted glass effect.
<header className="fixed top-0 w-full z-50 border-b bg-background/80 backdrop-blur-sm">
<div className="max-w-6xl mx-auto px-6 flex items-center h-16">
<a href="/" className="font-bold text-lg">Brand</a>
<nav className="hidden md:flex items-center gap-6 ml-auto">
<a href="/about" className="text-sm text-muted-foreground hover:text-foreground">About</a>
<a href="/features" className="text-sm text-muted-foreground hover:text-foreground">Features</a>
<Button size="sm">Get Started</Button>
</nav>
</div>
</header>Transparent background, transitions to frosted glass on scroll
Solid background color from the start