import { Star } from 'lucide-react' import { Card, CardContent } from '@/components/ui/card' import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar' interface TestimonialCardProps { name: string role: string company: string avatar: string rating: number quote: string } export function TestimonialCard({ name, role, company, avatar, rating, quote }: TestimonialCardProps) { return (
{/* Rating stars */}
{Array.from({ length: 5 }).map((_, i) => ( ))}
{/* Quote */}

“{quote}”

{/* Author */}
{name.charAt(0)}

{name}

{role}, {company}

) }