From 381a488671fe77f6d13cce9919b4b1401478f0f2 Mon Sep 17 00:00:00 2001 From: LofiSu <163713803+LofiSu@users.noreply.github.com> Date: Sun, 26 Jan 2025 06:24:28 +0000 Subject: cli --- src/HomePage.tsx | 1 - src/components/FeatureCard.tsx | 28 ++++++++++++++++++++++++++++ src/components/FutureCard.tsx | 28 ---------------------------- 3 files changed, 28 insertions(+), 29 deletions(-) create mode 100644 src/components/FeatureCard.tsx delete mode 100644 src/components/FutureCard.tsx (limited to 'src') diff --git a/src/HomePage.tsx b/src/HomePage.tsx index dcbb88c..3a40a16 100644 --- a/src/HomePage.tsx +++ b/src/HomePage.tsx @@ -11,7 +11,6 @@ const HomePage: React.FC = () => { return (
- {/* Hero Section */}
= ({ icon, title, description }) => { + return ( + + +
+
+ {icon} +
+

{title}

+

{description}

+
+
+
+ ); +}; diff --git a/src/components/FutureCard.tsx b/src/components/FutureCard.tsx deleted file mode 100644 index 5f8a95d..0000000 --- a/src/components/FutureCard.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react'; -import { motion } from 'framer-motion'; -import { Card } from '@nextui-org/react'; - -interface FeatureCardProps { - icon: React.ReactNode; - title: string; - description: string; -} - -export const FeatureCard: React.FC = ({ icon, title, description }) => { - return ( - - -
-
- {icon} -
-

{title}

-

{description}

-
-
-
- ); -}; -- cgit v1.2.3-70-g09d2