export function CardHeader({ title, subtitle }: { title: string; subtitle?: string }) { return (

{title}

{subtitle && ( {subtitle} )}
); }