import { cn } from '@/lib/utils' import { motion } from 'framer-motion' interface CardProps { children: React.ReactNode className?: string hover?: boolean padding?: 'sm' | 'md' | 'lg' } export function Card({ children, className, hover = false, padding = 'lg' }: CardProps) { const paddingClasses = { sm: 'p-4', md: 'p-5', lg: 'p-6 md:p-8', } return ( {children} ) } interface CardHeaderProps { title: string subtitle?: string action?: React.ReactNode className?: string } export function CardHeader({ title, subtitle, action, className }: CardHeaderProps) { return (

{title}

{subtitle && (

{subtitle}

)}
{action &&
{action}
}
) }