const testimonials = [ { quote: "StreamLine has revolutionized our team's workflow. It's a game-changer!", author: "Jane Doe", company: "Tech Innovators Inc.", }, { quote: "The best project management tool we've ever used. Highly recommended!", author: "John Smith", company: "Creative Solutions LLC", }, { quote: "StreamLine helped us increase productivity by 40%. It's incredible!", author: "Emily Johnson", company: "Startup Ventures", }, ] export default function Testimonials() { return (

What Our Customers Say

{testimonials.map((testimonial, index) => (

"{testimonial.quote}"

{testimonial.author}

{testimonial.company}

))}
) }