diff --git a/src/components/sections/testimonial/TestimonialCardOne.tsx b/src/components/sections/testimonial/TestimonialCardOne.tsx index 99940b8..35e398b 100644 --- a/src/components/sections/testimonial/TestimonialCardOne.tsx +++ b/src/components/sections/testimonial/TestimonialCardOne.tsx @@ -8,6 +8,82 @@ import { Star } from "lucide-react"; import type { LucideIcon } from "lucide-react"; import type { ButtonConfig, ButtonAnimationType, CardAnimationTypeWith3D, GridVariant, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types"; +const TestimonialCardFlip = memo(({ testimonial, className }: { testimonial: Testimonial; className?: string }) => { + const [isFlipped, setIsFlipped] = useState(false); + + return ( +
+ {testimonial.role} +
++ {testimonial.company} +
++ "{testimonial.testimonialText || "No testimonial text provided"}" +
+