// components/WhyChooseUsSection.tsx import React from "react"; import { IconType } from "react-icons"; // Import IconType for typing import { FiZap, FiUsers, FiTarget, FiBarChart2 } from "react-icons/fi"; // Example icons type FeatureItem = { icon: IconType; title: string; description: string; }; type WhyChooseUsProps = { title: string; subtitle?: string; features: FeatureItem[]; }; const WhyChooseUsSection: React.FC = ({ title, subtitle, features, }) => { return ( // Use standard background for seamless flow or secondary for slight distinction
{/* Use semantic foreground */}

{title}

{subtitle && ( // Use semantic muted foreground

{subtitle}

)}
{/* Features Grid */}
{features.map((feature, index) => (
{" "} {/* Added padding and hover */}
{/* Icon using primary color */}
{/* Title using foreground */}

{feature.title}

{/* Description using muted foreground */}

{feature.description}

))}
); }; // Example default data (adapt based on OMS's key selling points/values) export const defaultWhyChooseUsFeatures: FeatureItem[] = [ { icon: FiZap, title: "Innovation Driven", description: "We leverage cutting-edge technology to create transformative solutions that push boundaries.", }, { icon: FiUsers, title: "Expert Teams", description: "Access highly skilled IT professionals tailored to your project needs, ensuring expertise and quality.", }, { icon: FiTarget, title: "Client-Centric Approach", description: "Your success is our priority. We partner closely with you to deliver solutions aligned with your goals.", }, { icon: FiBarChart2, title: "Measurable Results", description: "Our focus is on delivering tangible business impact, enhancing efficiency and driving growth.", }, ]; export default WhyChooseUsSection;