import Link from "next/link"; import type { Locale } from "@/i18n/config"; import { localizedHref } from "@/lib/utils"; import { Button } from "@/components/ui/Button"; type NavItem = { label: string; href: string }; const DEFAULT_NAV: NavItem[] = [ { label: "Optics", href: "#optics" }, { label: "Eyetracking", href: "#eyetracking" }, { label: "Experiences", href: "#experiences" }, { label: "Shop", href: "/shop" }, ]; /** * Floating pill navigation (design-system signature). Fixed, centered, blurred * over the black hero with a hairline border. Lowercase wordmark, quiet links, * one outlined CTA. */ export function SiteHeader({ locale, nav = DEFAULT_NAV, cta = { label: "Order now", href: "/shop" }, }: { locale: Locale; nav?: NavItem[]; cta?: NavItem; }) { return (
bigscreen
); }