import React from "react"; const testimonials = [ { name: "Alex Chen", role: "Senior Developer", company: "TechCorp", content: "Better-T Stack has revolutionized our development workflow. The type safety and development experience is unmatched.", avatar: "AC", }, { name: "Sarah Miller", role: "Tech Lead", company: "Innovation Labs", content: "This is the future of full-stack development. The integration between all tools is seamless and intuitive.", avatar: "SM", }, { name: "James Wilson", role: "Frontend Architect", company: "DevForce", content: "Finally, a stack that prioritizes both developer experience and performance. It's a game-changer.", avatar: "JW", }, ]; const Testimonials = () => { return (

Loved by Developers Worldwide

Join thousands of developers crafting the future with Better-T Stack

{testimonials.map((testimonial) => (
{testimonial.avatar}

{testimonial.name}

{testimonial.role} at {testimonial.company}

{testimonial.content}

))}
); }; export default Testimonials;