import { motion } from 'framer-motion'; import { ReactNode } from 'react'; interface CardProps { children: ReactNode; className?: string; hover?: boolean; onClick?: () => void; } export const Card = ({ children, className = '', hover = true, onClick }: CardProps) => { return ( {children} ); };