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 && (
+
+