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 */} +
); }