interface CardProps { children: React.ReactNode; className?: string; title?: string; } export default function Card({ children, className = '', title }: CardProps) { return (
{title && (

{title}

)}
{children}
); }