import type { ReactNode } from 'react' /** Placeholder page scaffolding used until each feature issue fills these in. */ export function PageStub({ title, children }: { title: string; children?: ReactNode }) { return (

{title}

{children ?? 'Placeholder — this page arrives in a later issue.'}

) }