/** * SiteHeader — top navigation present on the homepage. * * Magazine-style — clean, with the brand mark left and a slim nav right. * Sub-pages use BureauNav (sticky with breadcrumbs) instead. */ import Link from "next/link"; import { AuthBar } from "./auth-bar"; export function SiteHeader({ locale }: { locale: "pt-br" | "en" }) { return (
The Disclosure Bureau
); } function NavLink({ href, label }: { href: string; label: string }) { return ( {label} ); }