import { Star } from 'lucide-react'; import { Card, CardContent } from '@/components/ui/card'; interface TestimonialProps { quote: string; author: string; role: string; rating: number; } export function Testimonial({ quote, author, role, rating }: TestimonialProps) { return (
{[...Array(5)].map((_, i) => ( ))}
"{quote}"
{author.split(' ').map(n => n[0]).join('')}

{author}

{role}

); }