"use client"; import React from 'react'; import { motion } from 'framer-motion'; interface CardProps { children: React.ReactNode; className?: string; onClick?: () => void; delay?: number; noPadding?: boolean; } export const Card: React.FC = ({ children, className = '', onClick, delay = 0, noPadding = false }) => { return ( // Fix: cast props to any to avoid framer-motion type errors {children} ); };