"use client"; import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { ArrowIcon } from "@/components/shared/icons/ArrowIcon"; const services = [ { title: "Neural Network Development", desc: "Custom design and development of neural network architectures tailored to your specific business needs", }, { title: "Training & Optimization", desc: "Fine-tuning and optimizing neural network models to improve accuracy, speed, and efficiency", }, { title: "Neural Network Integration", desc: "Expert guidance and strategic advice on integrating neural networks into your existing systems", }, ]; export function ServiceCardsGrid() { return (
{services.map((svc, i) => (
Icon { (e.target as HTMLImageElement).src = "data:image/svg+xml;utf8,"; }} />

{svc.title}

{svc.desc}

))}
); }