"use client"; import { Button } from "@openstatus/ui/components/ui/button"; import { cn } from "@openstatus/ui/lib/utils"; /** * StatusPageHeader — presentation-only header chrome. * * Compose with `StatusPageHeaderContent`, `StatusPageHeaderBrand`, * `StatusPageHeaderNav` (+ `Item`), and `StatusPageHeaderActions`. Embed * gating, route-aware active state, mobile menu shell, brand link target, * and tRPC fetch all stay in the wrapping app. */ export function StatusPageHeader({ className, ...props }: React.ComponentProps<"header">) { return (
); } export function StatusPageHeaderContent({ className, ...props }: React.ComponentProps<"nav">) { return (