/** * 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"; import { LocaleToggle } from "./locale-toggle"; import { NavLink } from "./nav-link"; export function SiteHeader({ locale }: { locale: "pt-br" | "en" }) { return (
The Disclosure Bureau
); }