import { cn } from '@/lib/utils' interface CardProps extends React.HTMLAttributes { children: React.ReactNode hover?: boolean } export default function Card({ className, children, hover = true, ...props }: CardProps) { return (
{children}
) }