diff --git a/src/components/sections/testimonial/TestimonialCardTen.tsx b/src/components/sections/testimonial/TestimonialCardTen.tsx index bcd51ea..96ff3a7 100644 --- a/src/components/sections/testimonial/TestimonialCardTen.tsx +++ b/src/components/sections/testimonial/TestimonialCardTen.tsx @@ -226,3 +226,61 @@ const TestimonialCardTen = ({ TestimonialCardTen.displayName = "TestimonialCardTen"; export default TestimonialCardTen; + +const testimonials = [ + { + id: "1", + title: "Amazing Experience", + quote: "I had an amazing experience with this product. It exceeded my expectations.", + name: "John Doe", + role: "Customer", + imageSrc: "https://via.placeholder.com/150", + videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ", + imageAlt: "John Doe", + videoAriaLabel: "John Doe testimonial video" + }, + { + id: "2", + title: "Great Product", + quote: "This product is great. It has improved my daily routine.", + name: "Jane Smith", + role: "Customer", + imageSrc: "https://via.placeholder.com/150", + videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ", + imageAlt: "Jane Smith", + videoAriaLabel: "Jane Smith testimonial video" + }, + { + id: "3", + title: "Highly Recommend", + quote: "I highly recommend this product to everyone. It's a game changer.", + name: "Alice Johnson", + role: "Customer", + imageSrc: "https://via.placeholder.com/150", + videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ", + imageAlt: "Alice Johnson", + videoAriaLabel: "Alice Johnson testimonial video" + }, + { + id: "4", + title: "Best Investment", + quote: "This is the best investment I've made. It's worth every penny.", + name: "Bob Brown", + role: "Customer", + imageSrc: "https://via.placeholder.com/150", + videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ", + imageAlt: "Bob Brown", + videoAriaLabel: "Bob Brown testimonial video" + }, + { + id: "5", + title: "Life Changing", + quote: "This product has changed my life for the better. I'm so grateful.", + name: "Charlie Davis", + role: "Customer", + imageSrc: "https://via.placeholder.com/150", + videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ", + imageAlt: "Charlie Davis", + videoAriaLabel: "Charlie Davis testimonial video" + } +];