From 5c013ed131fc35307656c00c6379d60ab599a3af Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Wed, 25 Dec 2024 05:38:11 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20style:=20change=20the=20static=20lo?= =?UTF-8?q?go=20to=20Snigdha=20OS=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/home/FeatureCard.tsx | 20 ++++++++++++++------ src/components/home/HeroSection.tsx | 24 +++++++++++++++++++++--- 2 files changed, 35 insertions(+), 9 deletions(-) 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 +}