From c6d259cfe1de7a7e0d9b8086088ce738564adb98 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 13:57:08 +0000 Subject: [PATCH] Add src/components/sections/about/AboutFeatureGrid.js --- .../sections/about/AboutFeatureGrid.js | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/components/sections/about/AboutFeatureGrid.js 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;