From 49fe7b6e9d49d8993739828df533bd412695c797 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 9 Feb 2026 16:09:59 +0200 Subject: [PATCH] Bob AI: add a new testimonial from Alex King who is a Cham... --- .../sections/testimonial/TestimonialCardSixteen.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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;