import { Quote } from "lucide-react"; import Button from "@/components/ui/Button"; import TextAnimation from "@/components/ui/TextAnimation"; import ImageOrVideo from "@/components/ui/ImageOrVideo"; import ScrollReveal from "@/components/ui/ScrollReveal"; type Testimonial = { name: string; role: string; quote: string; } & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); const TestimonialCard = ({ testimonial }: { testimonial: Testimonial }) => (
{testimonial.quote}
{tag}