From c91da9f81e1f115f8007608997e625b3e8b27215 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Fri, 27 Feb 2026 10:10:58 +0000 Subject: [PATCH] Bob AI: Combine first and last name into a single name field in the --- src/components/sections/testimonial/TestimonialCardOne.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/sections/testimonial/TestimonialCardOne.tsx b/src/components/sections/testimonial/TestimonialCardOne.tsx index 35e398b..6115114 100644 --- a/src/components/sections/testimonial/TestimonialCardOne.tsx +++ b/src/components/sections/testimonial/TestimonialCardOne.tsx @@ -48,9 +48,9 @@ const TestimonialCardFlip = memo(({ testimonial, className }: { testimonial: Tes className="w-24 h-24 rounded-full object-cover mb-4 border-4 border-white dark:border-slate-700 shadow-lg" /> )} -

- {testimonial.name} -

+

+ {testimonial.firstName} {testimonial.lastName} +

{testimonial.role}

-- 2.49.1