interface CardProps { title?: string widthClass?: string children: React.ReactNode } function Card({title, widthClass='min-w-fit', children}: CardProps) { return (