import { cn } from "@/lib/utils"; interface CardProps { children: React.ReactNode; hover?: boolean; className?: string; onClick?: () => void; } export function Card({ children, hover = false, className = "", onClick }: CardProps) { return (
{children}
); } interface CardHeaderProps { children: React.ReactNode; className?: string; } export function CardHeader({ children, className = "" }: CardHeaderProps) { return
{children}
; } interface CardTitleProps { children: React.ReactNode; className?: string; } export function CardTitle({ children, className = "" }: CardTitleProps) { return

{children}

; } interface CardDescriptionProps { children: React.ReactNode; className?: string; } export function CardDescription({ children, className = "" }: CardDescriptionProps) { return

{children}

; } interface CardContentProps { children: React.ReactNode; className?: string; } export function CardContent({ children, className = "" }: CardContentProps) { return
{children}
; } interface CardFooterProps { children: React.ReactNode; className?: string; } export function CardFooter({ children, className = "" }: CardFooterProps) { return
{children}
; }