diff --git a/src/components/sections/about/AboutFeatureGrid.js b/src/components/sections/about/AboutFeatureGrid.js new file mode 100644 index 0000000..930b579 --- /dev/null +++ b/src/components/sections/about/AboutFeatureGrid.js @@ -0,0 +1,60 @@ +import React from 'react'; +import { Zap, Shield, Globe, Code } from 'lucide-react'; + +function AboutFeatureGrid() { + const features = [ + { + icon: , + title: 'Lightning Fast', + description: 'Optimized for performance with modern web standards' + }, + { + icon: , + title: 'Secure by Default', + description: 'Built with security best practices from the ground up' + }, + { + icon: , + title: 'Global Scale', + description: 'Deploy worldwide with our global infrastructure' + }, + { + icon: , + title: 'Developer First', + description: 'Clean APIs and excellent developer experience' + } + ]; + + return ( + + + + + Why choose our platform? + + + Everything you need to build modern web applications + + + + + {features.map((feature, index) => ( + + + {feature.icon} + + + {feature.title} + + + {feature.description} + + + ))} + + + + ); +} + +export default AboutFeatureGrid;
+ Everything you need to build modern web applications +
+ {feature.description} +