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 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/components/FeatureCard.tsx (limited to 'src/components/FeatureCard.tsx') 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}

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