const testimonials = [ { quote: 'The security agent caught an XSS vulnerability in our checkout flow that our entire team missed. The fix was ready in seconds.', name: 'Alex Kim', role: 'Senior Frontend Dev, Streamline', initials: 'AK', }, { quote: 'Having AI that understands my entire workspace context is a game-changer. The completions are actually useful, not just autocomplete on steroids.', name: 'Sarah Chen', role: 'Tech Lead, BuildKit', initials: 'SC', }, { quote: 'We imported our React monorepo and got a full review with docs in under a minute. The PR it generated was merge-ready.', name: 'Marcus Webb', role: 'Engineering Manager, Pixelform', initials: 'MW', }, ]; export default function TestimonialsSection() { return (

Loved by Frontend
Developers Everywhere

Hear from the developers who made the switch.

{testimonials.map((t, i) => (

"{t.quote}"

{t.initials}

{t.name}

{t.role}

))}
); }