import React from 'react'; interface CardProps { children: React.ReactNode; className?: string; hover?: boolean; onClick?: () => void; } export function Card({ children, className = '', hover = true, onClick }: CardProps) { const hoverStyles = hover ? "hover:translate-y-[-5px] hover:scale-[1.02] hover:shadow-[0_8px_24px_var(--shadow-color)] cursor-pointer transition-all duration-[var(--transition-fluid)]" : "transition-all duration-[var(--transition-fluid)]"; return (
{children}
); }