/** * BureauNav — top navigation bar present on every bureau page. * * Solves "I'm stuck on this page, there's no way back" UX. Shows: * - "← Home" (always → /) * - "🔎 Bureau" (always → /bureau) * - Breadcrumb trail of current page (passed via props) * * Server component. No client-side history needed because the parent links * are deterministic (every bureau page has a known parent in the hierarchy). */ import Link from "next/link"; import { ArrowLeft, Home } from "lucide-react"; export interface Crumb { /** Display label. */ label: string; /** When omitted the crumb is rendered as the current page (no link). */ href?: string; } export function BureauNav({ crumbs }: { crumbs: Crumb[] }) { return ( ); }