mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
|
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 (
|
||
|
<section className="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900">
|
||
|
<h2 className="text-3xl font-bold text-center mb-12">What Our Customers Say</h2>
|
||
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||
|
{testimonials.map((testimonial, index) => (
|
||
|
<div key={index} className="bg-gray-800 p-6 rounded-lg shadow-lg">
|
||
|
<p className="text-lg mb-4">"{testimonial.quote}"</p>
|
||
|
<p className="font-semibold">{testimonial.author}</p>
|
||
|
<p className="text-sm text-gray-400">{testimonial.company}</p>
|
||
|
</div>
|
||
|
))}
|
||
|
</div>
|
||
|
</section>
|
||
|
)
|
||
|
}
|
||
|
|