diff --git a/web/app/bureau/page.tsx b/web/app/bureau/page.tsx index cd6f934..8be3cb9 100644 --- a/web/app/bureau/page.tsx +++ b/web/app/bureau/page.tsx @@ -7,6 +7,7 @@ */ import { BureauNav } from "@/components/bureau-nav"; import { CaseLibraryBrowser } from "@/components/case-library-browser"; +import { SiteHeader } from "@/components/site-header"; import { getLocale } from "@/components/locale-toggle"; import { loadCases } from "@/lib/cases"; @@ -19,6 +20,7 @@ export default async function BureauPage() { return (
+
diff --git a/web/app/c/[slug]/page.tsx b/web/app/c/[slug]/page.tsx index 35d9143..3ee9b3e 100644 --- a/web/app/c/[slug]/page.tsx +++ b/web/app/c/[slug]/page.tsx @@ -11,6 +11,7 @@ import path from "node:path"; import type { Metadata } from "next"; import { MarkdownBody } from "@/components/markdown-body"; import { BureauNav } from "@/components/bureau-nav"; +import { SiteHeader } from "@/components/site-header"; import { getLocale } from "@/components/locale-toggle"; import { pickLocaleBody } from "@/lib/bilingual"; @@ -151,6 +152,7 @@ export default async function CaseReportPage({ return (
+ 32 ? title.slice(0, 32) + "…" : title }, diff --git a/web/app/h/[hypothesisId]/page.tsx b/web/app/h/[hypothesisId]/page.tsx index d5d4dc6..3faeab3 100644 --- a/web/app/h/[hypothesisId]/page.tsx +++ b/web/app/h/[hypothesisId]/page.tsx @@ -17,6 +17,7 @@ import { readFile } from "node:fs/promises"; import path from "node:path"; import { pgQuery } from "@/lib/retrieval/db"; import { BureauNav } from "@/components/bureau-nav"; +import { SiteHeader } from "@/components/site-header"; import { getLocale } from "@/components/locale-toggle"; import { RedTeamRequestButton } from "@/components/red-team-request-button"; @@ -198,6 +199,7 @@ export default async function HypothesisPage({ return (
+ + )} - - {/* Desktop right cluster — toggle + auth. Hidden on mobile; the - hamburger drawer carries the same controls there. */} - - - - - {/* Mobile menu — hamburger that opens the full primary nav drawer. */} - - -
);