import React from "react"; import { cn } from "../lib/utils"; import { Card } from "./ui/card"; interface TestimonialCardProps { quote: string; author: string; role: string; avatarGradient: string; className?: string; } export function TestimonialCard({ quote, author, role, avatarGradient, className, }: TestimonialCardProps) { return (
{[1, 2, 3, 4, 5].map((_, i) => ( ))}

"{quote}"

{author}

{role}

); }