import { Quote } from "lucide-react"; import ScrollReveal from "@/components/ui/ScrollReveal"; import TextAnimation from "@/components/ui/TextAnimation"; import ImageOrVideo from "@/components/ui/ImageOrVideo"; type AboutTestimonialProps = { tag: string; quote: string; author: string; role: string; } & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); const AboutTestimonial = ({ tag, quote, author, role, imageSrc, videoSrc, }: AboutTestimonialProps) => { return (

{tag}

{author} {role}
); }; export default AboutTestimonial;