interface PageTitleProps { title: string; subtitle?: string; } export default function PageTitle({ title, subtitle }: PageTitleProps) { return (

{title}

{subtitle && (

{subtitle}

)}
); }