import type { ReactNode } from "react"; /** Shared page chrome (measured): 28px/600 title, muted description, and * an optional top-right action pill. Used across the global pages. */ export function PageChrome({ title, description, action, children, }: { title: string; description?: string; action?: ReactNode; children: ReactNode; }) { return (

{title}

{description && (

{description}

)}
{action != null &&
{action}
}
{children}
); }