import { Card, CardContent } from "@/components/ui/card"; interface TestimonialCardProps { quote: string; author: string; role: string; image?: string; } export function TestimonialCard({ quote, author, role, image }: TestimonialCardProps) { return (

{quote}

{image && ( {author} )}

{author}

{role}

); }