diff --git a/src/components/home/FeatureCard.tsx b/src/components/home/FeatureCard.tsx index a9c6b81f..cb7a9edf 100644 --- a/src/components/home/FeatureCard.tsx +++ b/src/components/home/FeatureCard.tsx @@ -1,5 +1,6 @@ import { motion } from 'framer-motion'; import { LucideIcon } from 'lucide-react'; +import clsx from 'clsx'; // Optional, for cleaner class management interface FeatureCardProps { title: string; @@ -18,18 +19,27 @@ export function FeatureCard({ title, description, icon: Icon, delay = 0 }: Featu whileHover={{ y: -5 }} className="relative group" > -
+
{/* Hover gradient overlay */}
{/* Icon centered with hover effect */}
- +
{/* Title with enhanced typography */} -

{title}

- +

{title}

+ {/* Description with improved readability */}

{description}