import { Card, CardContent } from '@/components/ui/card' import { Star, Quote } from 'lucide-react' const Testimonials = () => { const testimonials = [ { name: 'Alex Rodriguez', role: 'Senior DevOps Engineer', company: 'TechCorp', content: "SiliconPin's Kubernetes hosting has been a game-changer for our deployment pipeline. The auto-scaling works flawlessly and the support team is incredibly knowledgeable.", rating: 5, avatar: 'AR', }, { name: 'Sarah Chen', role: 'Full Stack Developer', company: 'StartupXYZ', content: "The VPS performance is outstanding and the control panel makes management so easy. I've moved all my client projects here and couldn't be happier.", rating: 5, avatar: 'SC', }, { name: 'Marcus Thompson', role: 'CTO', company: 'GrowthLab', content: 'Their SMTP service has 99.9% deliverability rates. Our email campaigns have never performed better. The API integration was seamless.', rating: 5, avatar: 'MT', }, { name: 'Emily Davis', role: 'Product Manager', company: 'InnovateCo', content: "The web tools suite is incredibly useful. The speech-to-text API powers our transcription service and it's more accurate than any other solution we've tried.", rating: 5, avatar: 'ED', }, ] return (

Trusted by Developers

See what our customers say about SiliconPin's services

{testimonials.map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.content}"

{testimonial.avatar}
{testimonial.name}
{testimonial.role} at {testimonial.company}
))}
) } export default Testimonials