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
+ We've built everything you need to create amazing web experiences, + from the ground up with modern best practices. +
+ {feature.description} +