From 17a028c25afeade3e45e319098bd3de13eec0c95 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 15:23:50 +0000 Subject: [PATCH] Update src/components/sections/feature/FeatureCardOne.tsx --- .../sections/feature/FeatureCardOne.tsx | 76 ++++++++----------- 1 file changed, 33 insertions(+), 43 deletions(-) diff --git a/src/components/sections/feature/FeatureCardOne.tsx b/src/components/sections/feature/FeatureCardOne.tsx index a468a05..77aa3dd 100644 --- a/src/components/sections/feature/FeatureCardOne.tsx +++ b/src/components/sections/feature/FeatureCardOne.tsx @@ -1,56 +1,46 @@ import React from 'react'; -import { Zap, Shield, Rocket, Users } from 'lucide-react'; -const features = [ - { - icon: , - title: "Lightning Fast", description: "Experience blazing fast performance with our optimized architecture and cutting-edge technology." - }, - { - icon: , - title: "Secure & Reliable", description: "Your data is protected with enterprise-grade security measures and 99.9% uptime guarantee." - }, - { - icon: , - title: "Scale with Ease", description: "Grow your business without limits. Our platform scales automatically to meet your needs." - }, - { - icon: , - title: "Team Collaboration", description: "Work together seamlessly with real-time collaboration tools and shared workspaces." - } -]; +const FeatureCardOne = () => { + const features = [ + { + title: 'Lightning Fast', + description: 'Built with performance in mind, delivering exceptional speed and reliability.', + icon: '⚡', + }, + { + title: 'Modern Design', + description: 'Clean, contemporary aesthetics that captivate and engage your audience.', + icon: '🎨', + }, + { + title: 'Responsive', + description: 'Perfectly optimized for all devices, from mobile to desktop.', + icon: '📱', + }, + { + title: 'Secure', + description: 'Enterprise-grade security measures to protect your data and users.', + icon: '🔒', + }, + ]; -const FeatureCardOne: React.FC = () => { return ( -
+
-

- Why Choose Our Platform? +

+ Why Choose Us

-

- Discover the features that make us the preferred choice for thousands of businesses worldwide. +

+ Discover the features that make our platform stand out from the competition.

-
{features.map((feature, index) => ( -
-
-
-
- {feature.icon} -
-
- -

- {feature.title} -

- -

- {feature.description} -

-
+
+
{feature.icon}
+

{feature.title}

+

{feature.description}

))}
@@ -59,4 +49,4 @@ const FeatureCardOne: React.FC = () => { ); }; -export default FeatureCardOne; \ No newline at end of file +export default FeatureCardOne;