interface ComponentCardProps { title: string; children: React.ReactNode; className?: string; // Additional custom classes for styling desc?: string; // Description text } const ComponentCard: React.FC = ({ title, children, className = "", desc = "", }) => { return (
{/* Card Header */}

{title}

{desc && (

{desc}

)}
{/* Card Body */}
{children}
); }; export default ComponentCard;