import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; import { IconBox } from "@/components/shared/IconBox"; export function ServiceFeaturesSection() { const features = [ { title: "AI Technology", desc: "Emphasize the expertise and knowledge of your team in developing and implementing neural networks.", }, { title: "Tailored solutions", desc: "Mention your ability to create customized neural network solutions that specifically address your clients.", }, { title: "Cutting-edge technology", desc: "Highlight that you use the latest and most advanced neural network frameworks and technologies.", }, { title: "AI consultancy & strategy", desc: "Emphasize the expertise and knowledge of your team in developing and implementing neural networks.", }, { title: "Computer vision", desc: "Mention your ability to create customized neural network solutions that specifically address your clients.", }, { title: "Deployment & Integration", desc: "Highlight that you use the latest and most advanced neural network frameworks and technologies.", }, ]; const DefaultIcon = () => (
); return (
{features.map((feat, i) => ( } title={feat.title} description={feat.desc} hasBorder={i < 3} // The original has a border for the first row /> ))}
); }