import { Card, CardContent, CardFooter } from "@/components/ui/card" import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar" import { IoChatbubbleEllipses } from "react-icons/io5" interface TestimonialCardProps { quote: string name: string role: string avatarSrc?: string className?: string } export function TestimonialCard({ quote = "This product has completely transformed how we work. The interface is intuitive and the features are exactly what we needed.", name = "Sarah Johnson", role = "Product Manager", avatarSrc = "/avatar-woman-1.png", className, }: TestimonialCardProps) { return (

{quote}

{name .split(" ") .map((n) => n[0]) .join("")}

{name}

{role}

) }