From 1516f851f622b3468fef9982b799430d90e62311 Mon Sep 17 00:00:00 2001 From: eshanized Date: Wed, 1 Jan 2025 11:18:59 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20style:=20remove=20dak=20gradient?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/home/TestimonialCard.tsx | 35 ++++++++++++++++++------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/src/components/home/TestimonialCard.tsx b/src/components/home/TestimonialCard.tsx index d7503a69..e3a16f6c 100644 --- a/src/components/home/TestimonialCard.tsx +++ b/src/components/home/TestimonialCard.tsx @@ -1,5 +1,5 @@ -import { motion } from 'framer-motion'; -import { Quote } from 'lucide-react'; +import { motion } from "framer-motion"; +import { Quote } from "lucide-react"; interface TestimonialProps { content: string; @@ -13,16 +13,33 @@ export function TestimonialCard({ content, author, role, delay = 0 }: Testimonia - -

{content}

-
-

{author}

+ {/* Floating quote icon */} +
+ +
+ + {/* Testimonial content */} +

+ + {content} + +

+ + {/* Author details */} +
+

{author}

{role}

+ + {/* Subtle background gradient */} +
); }