import React from 'react'; import { Zap, Shield, Rocket, Users } from 'lucide-react'; const features = [ { icon: , title: "Lightning Fast", description: "Experience blazing fast performance with our optimized architecture and cutting-edge technology." }, { icon: , title: "Secure & Reliable", description: "Your data is protected with enterprise-grade security measures and 99.9% uptime guarantee." }, { icon: , title: "Scale with Ease", description: "Grow your business without limits. Our platform scales automatically to meet your needs." }, { icon: , title: "Team Collaboration", description: "Work together seamlessly with real-time collaboration tools and shared workspaces." } ]; const FeatureCardOne: React.FC = () => { return (

Why Choose Our Platform?

Discover the features that make us the preferred choice for thousands of businesses worldwide.

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

{feature.title}

{feature.description}

))}
); }; export default FeatureCardOne;