From 17ea4507d19603021e42c408d55d0ac4e13337e0 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 21 Jan 2026 17:38:01 +0200 Subject: [PATCH] Add linkedinUrl support to TestimonialCardTwo --- .../sections/testimonial/TestimonialCardTwo.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/sections/testimonial/TestimonialCardTwo.tsx b/src/components/sections/testimonial/TestimonialCardTwo.tsx index f28ba4e..547ac2f 100644 --- a/src/components/sections/testimonial/TestimonialCardTwo.tsx +++ b/src/components/sections/testimonial/TestimonialCardTwo.tsx @@ -1,5 +1,6 @@ "use client"; +import { Linkedin } from 'lucide-react'; import { memo } from "react"; import Image from "next/image"; import CardStack from "@/components/cardStack/CardStack"; @@ -13,6 +14,7 @@ type Testimonial = { id: string; name: string; role: string; + linkedinUrl?: string; testimonial: string; imageSrc?: string; imageAlt?: string; @@ -99,6 +101,12 @@ const TestimonialCard = memo(({ )} + {testimonial.linkedinUrl && ( + + + + )} +

{testimonial.name}