diff --git a/src/components/sections/testimonial/TestimonialCardSixteen.tsx b/src/components/sections/testimonial/TestimonialCardSixteen.tsx index 834f3c6..3f4e0b9 100644 --- a/src/components/sections/testimonial/TestimonialCardSixteen.tsx +++ b/src/components/sections/testimonial/TestimonialCardSixteen.tsx @@ -25,6 +25,19 @@ type KpiItem = { interface TestimonialCardSixteenProps { testimonials: Testimonial[]; + // New testimonial from Alex King + testimonials: [ + ...testimonials, + { + id: "6", + name: "Alex King", + role: "Champion", + company: "Tech Innovators", + rating: 5, + imageSrc: "/images/alex-king.jpg", + imageAlt: "Alex King", + }, + ]; kpiItems: [KpiItem, KpiItem, KpiItem]; carouselMode?: "auto" | "buttons"; uniformGridCustomHeightClasses?: string;