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 (
{subtitle}
)}