mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-08-26 06:11:15 +00:00
update
This commit is contained in:
35
web/components/testimonials.tsx
Normal file
35
web/components/testimonials.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user