import React from 'react'; import { Star, Quote } from 'lucide-react'; import ImageWithFallback from './ImageWithFallback'; interface TestimonialProps { name: string; role: string; company: string; image: string; content: string; rating: number; } const TestimonialCard: React.FC = ({ name, role, company, image, content, rating }) => { return (

{name}

{role} at {company}

{[...Array(5)].map((_, i) => ( ))}

{content}

); }; export default TestimonialCard;