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/components/FeatureCard.tsx | 28 ++++++++++++++++++++++++++++ src/components/FutureCard.tsx | 28 ---------------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 src/components/FeatureCard.tsx delete mode 100644 src/components/FutureCard.tsx (limited to 'src/components') diff --git a/src/components/FeatureCard.tsx b/src/components/FeatureCard.tsx new file mode 100644 index 0000000..5f8a95d --- /dev/null +++ b/src/components/FeatureCard.tsx @@ -0,0 +1,28 @@ +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}

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