import React from 'react'; import { motion } from 'framer-motion'; interface ContentCardProps { children: React.ReactNode; className?: string; } export const ContentCard: React.FC = ({ children, className = "" }) => { return ( {children} ); };