From a1e797c027442a2a911a53cc5993db8181642d8c Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 13:59:46 +0000 Subject: [PATCH] Update src/components/sections/feature/FeatureCardOne.js --- .../sections/feature/FeatureCardOne.js | 88 ++++++++++++------- 1 file changed, 58 insertions(+), 30 deletions(-) diff --git a/src/components/sections/feature/FeatureCardOne.js b/src/components/sections/feature/FeatureCardOne.js index 4da2f80..d1beda2 100644 --- a/src/components/sections/feature/FeatureCardOne.js +++ b/src/components/sections/feature/FeatureCardOne.js @@ -1,57 +1,85 @@ import React from 'react'; -import { Rocket, Zap, Shield, Users } from 'lucide-react'; +import { Shield, Zap, Globe, Users } from 'lucide-react'; -function FeatureCardOne() { +const FeatureCard = ({ icon: Icon, title, description }) => { + return ( +
+
+
+ +
+
+ +

+ {title} +

+ +

+ {description} +

+
+ ); +}; + +const FeatureCardOne = () => { const features = [ { - icon: , - title: "Fast Performance", description: "Lightning-fast loading times with optimized components and modern build tools.", image: "/images/rocket.518dadfa-1768917245450.svg" + icon: Shield, + title: "Enterprise Security", description: "Advanced encryption and security protocols to protect your data with military-grade protection systems." }, { - icon: , - title: "Easy to Use", description: "Simple APIs and intuitive design make development a breeze for teams of all sizes.", image: "/images/magic-wand.ff01fe1d-1768917245455.svg" + icon: Zap, + title: "Lightning Performance", description: "Optimized for speed and efficiency, delivering results in milliseconds with our advanced infrastructure." }, { - icon: , - title: "Type Safe", description: "Built with TypeScript for better developer experience and fewer runtime errors.", image: "/images/type-safety.34453790-1768917245458.svg" + icon: Globe, + title: "Global Reach", description: "Worldwide coverage with 99.9% uptime guarantee, ensuring your services are always accessible." }, { - icon: , - title: "Team Friendly", description: "Collaborative tools and documentation to help your team work together effectively.", image: "/images/quality.d1d04ce8-1768917245456.svg" + icon: Users, + title: "Team Collaboration", description: "Seamless collaboration tools designed for modern teams to work together efficiently and effectively." } ]; return ( -
+
+ {/* Header */}
-

- Why Choose Our Platform? +

+ Why Choose + + Our Platform +

-

- We've built everything you need to create amazing web experiences, - from the ground up with modern best practices. + +

+ Discover the features that make us the preferred choice for businesses worldwide, + delivering excellence in every aspect of our service.

- + + {/* Features Grid */}
{features.map((feature, index) => ( -
-
- {feature.icon} -
-

- {feature.title} -

-

- {feature.description} -

-
+ ))}
+ + {/* CTA Section */} +
+ +
); -} +}; -export default FeatureCardOne; \ No newline at end of file +export default FeatureCardOne;