Files
stalendeuren/components/layout/navbar.tsx
Ubuntu 3d788740cb feat: Latest production version with interior scene and glass
Includes room interior with floor, walls, glass you can see through,
and all uncommitted production changes that were running live.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 14:50:31 +00:00

82 lines
2.6 KiB
TypeScript

"use client";
import Link from "next/link";
import { Button } from "@/components/ui/button";
import { Menu, X } from "lucide-react";
import { useState } from "react";
import { cn } from "@/lib/utils";
const navLinks = [
{ href: "/", label: "Home" },
{ href: "/producten", label: "Producten" },
{ href: "/over-ons", label: "Over Ons" },
{ href: "/contact", label: "Contact" },
];
export function Navbar() {
const [mobileOpen, setMobileOpen] = useState(false);
return (
<nav className="fixed top-0 left-0 right-0 z-50 border-b border-border/40 bg-background/80 backdrop-blur-lg">
<div className="mx-auto flex h-16 max-w-7xl items-center justify-between px-4 sm:px-6 lg:px-8">
{/* Logo */}
<Link href="/" className="text-xl font-bold tracking-tighter text-foreground">
PROINN
</Link>
{/* Desktop Navigation */}
<div className="hidden items-center gap-1 md:flex">
{navLinks.map((link) => (
<Link
key={link.href}
href={link.href}
className="rounded-md px-3 py-2 text-sm font-medium text-muted-foreground transition-colors hover:text-foreground"
>
{link.label}
</Link>
))}
</div>
{/* CTA Button + Mobile Toggle */}
<div className="flex items-center gap-3">
<Button
asChild
size="sm"
className="bg-brand-orange text-white hover:bg-brand-orange/90"
>
<Link href="/offerte">Vraag Offerte</Link>
</Button>
<button
onClick={() => setMobileOpen(!mobileOpen)}
className="inline-flex items-center justify-center rounded-md p-2 text-muted-foreground hover:text-foreground md:hidden"
>
{mobileOpen ? <X className="size-5" /> : <Menu className="size-5" />}
</button>
</div>
</div>
{/* Mobile Navigation */}
<div
className={cn(
"overflow-hidden border-t border-border/40 bg-background/95 backdrop-blur-lg transition-all duration-200 md:hidden",
mobileOpen ? "max-h-64" : "max-h-0 border-t-0"
)}
>
<div className="space-y-1 px-4 py-3">
{navLinks.map((link) => (
<Link
key={link.href}
href={link.href}
onClick={() => setMobileOpen(false)}
className="block rounded-md px-3 py-2 text-sm font-medium text-muted-foreground transition-colors hover:bg-accent hover:text-foreground"
>
{link.label}
</Link>
))}
</div>
</div>
</nav>
);
}