export function PageShell({ title, subtitle, children, }: { title: string; subtitle?: string; children: React.ReactNode; }) { return (

{title}

{subtitle &&

{subtitle}

}
{children}
); } export function Prose({ children }: { children: React.ReactNode }) { return
{children}
; }