// components/CoreServicesSection.tsx import React from "react"; import ServiceCard from "./ServiceCard"; import { FaCogs, FaProjectDiagram, FaCode } from "react-icons/fa"; // Example icons // Define the structure for a service item type ServiceItem = { icon: React.ElementType; title: string; description: string; }; // Define props for the section type CoreServicesSectionProps = { title: string; subtitle: string; services: ServiceItem[]; }; const CoreServicesSection: React.FC = ({ title, subtitle, services, }) => { return ( // Use semantic secondary background
{" "} {/* Use container */} {/* Use semantic foreground */}

{title}

{/* Use semantic muted foreground */}

{subtitle}

{services.map((service, index) => ( ))}
); }; // Example default data matching the original page export const defaultCoreServices: ServiceItem[] = [ { icon: FaCogs, title: "Resource Augmentation", description: "Access top-tier IT talent seamlessly integrated with your team. Skilled professionals for short-term projects or long-term engagements.", }, { icon: FaProjectDiagram, title: "IT Implementation", description: "Empowering your business through seamless IT rollouts—delivered on time and on budget. We turn complex systems into powerful solutions that drive transformation, reduce risk, and unlock real results. ", }, { icon: FaCode, title: "Product Development", description: "Creating innovative, scalable digital products from concept to deployment to enhance efficiency and foster business growth.", }, ]; export default CoreServicesSection;