"use client"; import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; export function TestimonialsSection() { const testimonials = [ { text: "Working with Aiero has been a game-changer for our business. Their AI solutions have revolutionized our operations, enabling us to automate repetitive tasks and make data-driven decisions. The level of efficiency we've achieved is unprecedented.", author: "David Smith", role: "CEO Company", }, { text: "Aiero has been a game-changer for our business. Their AI solutions have revolutionized our operations, enabling us to automate repetitive tasks and make data-driven decisions. The level of efficiency we've achieved is unprecedented.", author: "Mark Dowson", role: "Manager", }, ]; return (
{testimonials.map((t, i) => (
{[...Array(5)].map((_, index) => ( ))}

"{t.text}"

{t.author} { (e.target as HTMLImageElement).src = "/images/aiero/home-9-img.png"; }} />
{t.author}

{t.role}

))}
); }