import { Star } from "lucide-react" import { Card, CardContent } from "@/components/ui/card" interface TestimonialCardProps { quote: string author: string } export function TestimonialCard({ quote, author }: TestimonialCardProps) { return (
{[...Array(5)].map((_, i) => ( ))}

"{quote}"

- {author}

) }