// components/ServiceCard.tsx import React from "react"; type ServiceCardProps = { icon: React.ElementType; // Expect a component like FaCogs title: string; description: string; }; const ServiceCard: React.FC = ({ icon: Icon, title, description, }) => { return ( // Use semantic variables for background, text, border
{/* Use semantic foreground for title */}

{title}

{/* Use semantic muted foreground for description */}

{description}

); }; export default ServiceCard;