import React from 'react'; import { TESTIMONIALS } from '../constants'; import { ArrowLeft, ArrowRight } from 'lucide-react'; const Testimonials: React.FC = () => { return (
Testimonials

Join thousands using Agentic User Experience (AUX) to run simulations and test ideas

{TESTIMONIALS.map((t, idx) => (

"{t.quote}"

{t.company[0]}
{t.company}
{t.author} • {t.role}
))}
); }; export default Testimonials;