From 9d3bc9d3c242e3976295c75a31f987798e23f46c Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 13:58:28 +0000 Subject: [PATCH] Add src/components/sections/feature/FeatureCardOne.js --- .../sections/feature/FeatureCardOne.js | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/components/sections/feature/FeatureCardOne.js diff --git a/src/components/sections/feature/FeatureCardOne.js b/src/components/sections/feature/FeatureCardOne.js new file mode 100644 index 0000000..4da2f80 --- /dev/null +++ b/src/components/sections/feature/FeatureCardOne.js @@ -0,0 +1,57 @@ +import React from 'react'; +import { Rocket, Zap, Shield, Users } from 'lucide-react'; + +function 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: , + 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: , + title: "Type Safe", description: "Built with TypeScript for better developer experience and fewer runtime errors.", image: "/images/type-safety.34453790-1768917245458.svg" + }, + { + icon: , + title: "Team Friendly", description: "Collaborative tools and documentation to help your team work together effectively.", image: "/images/quality.d1d04ce8-1768917245456.svg" + } + ]; + + return ( +
+
+
+

+ Why Choose Our Platform? +

+

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

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

+ {feature.title} +

+

+ {feature.description} +

+
+ ))} +
+
+
+ ); +} + +export default FeatureCardOne; \ No newline at end of file