import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; import { IconBox } from "@/components/shared/IconBox"; import { differentiators } from "@/data/site-content"; export function ServiceFeaturesSection() { const DefaultIcon = () => (
); return (
{differentiators.map((item, i) => ( } title={item.title} description={item.description} hasBorder={i < 3} // The original has a border for the first row /> ))}
); }