- Redesigned configurator page with split-screen interface - Left: Large visual preview with sticky positioning - Right: Premium white controls container with form steps - Added complete configurator wizard (5 steps) - Updated hero CTA to "Zelf ontwerpen" - Configured Shadcn UI with Slate theme - Added layout components (Navbar, Footer) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
82 lines
2.6 KiB
TypeScript
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: "/maatwerk", label: "Maatwerk" },
|
|
{ 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>
|
|
);
|
|
}
|