import { ReactNode } from 'react'; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from '../../components/ui/card'; import Footer from './footer'; type CustomCardProps = { title: string; description?: string; content: ReactNode; style?: string; footer?: boolean; }; export const CustomCard = ({ title, description, content, style, footer = true, }: CustomCardProps) => { return ( {title} {description} {content} {footer && (