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;