diff --git a/src/components/home/FeatureCard.tsx b/src/components/home/FeatureCard.tsx
index c7852469..a9c6b81f 100644
--- a/src/components/home/FeatureCard.tsx
+++ b/src/components/home/FeatureCard.tsx
@@ -18,13 +18,21 @@ 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}
+ {/* Description with improved readability */}
+
{description}
);
-}
\ No newline at end of file
+}
diff --git a/src/components/home/HeroSection.tsx b/src/components/home/HeroSection.tsx
index a6aafcbd..3c1862cb 100644
--- a/src/components/home/HeroSection.tsx
+++ b/src/components/home/HeroSection.tsx
@@ -1,6 +1,6 @@
import { motion } from 'framer-motion';
import { Link } from 'react-router-dom';
-import { Download, ChevronRight, Terminal } from 'lucide-react';
+import { Download, ChevronRight } from 'lucide-react';
export function HeroSection() {
return (
@@ -22,7 +22,25 @@ export function HeroSection() {
}}
transition={{ duration: 2, repeat: Infinity, repeatDelay: 3 }}
>
-
+ {/* Custom SVG icon */}
+ {/*
*/}
+
);
-}
\ No newline at end of file
+}