'use client'; interface CardProps { children: React.ReactNode; className?: string; } export function Card({ children, className = '' }: CardProps) { return (
{children}
); } export function CardHeader({ children, className = '' }: CardProps) { return (
{children}
); } export function CardContent({ children, className = '' }: CardProps) { return (
{children}
); } export function CardFooter({ children, className = '' }: CardProps) { return (
{children}
); }