diff --git a/src/components/sections/testimonial/TestimonialCardSixteen.tsx b/src/components/sections/testimonial/TestimonialCardSixteen.tsx index 2904a83..62c16fc 100644 --- a/src/components/sections/testimonial/TestimonialCardSixteen.tsx +++ b/src/components/sections/testimonial/TestimonialCardSixteen.tsx @@ -26,18 +26,19 @@ type KpiItem = { interface TestimonialCardSixteenProps { testimonials: Testimonial[]; // New testimonial from Alex King - testimonials: [ - ...testimonials, - { - id: "6", - name: "Alex King", - role: "Pro Player", - company: "Champions League", - rating: 5, - imageSrc: "/images/alex-king.jpg", - imageAlt: "Alex King", - }, - ]; +testimonials: [ + ...testimonials, + { + id: "6", + name: "Alex King", + role: "Pro Player", + company: "Champions League", + rating: 5, + imageSrc: "/images/alex-king.jpg", + imageAlt: "Alex King", + testimonialText: "YOUR TESTIMONIAL TEXT HERE", + }, +]; kpiItems: [KpiItem, KpiItem, KpiItem]; carouselMode?: "auto" | "buttons"; uniformGridCustomHeightClasses?: string;