import React from 'react'; import { Rocket, Shield, Zap } from 'lucide-react'; const FeatureCardOne = () => { const features = [ { icon: , title: 'Fast Performance', description: 'Optimized for speed and performance with modern web standards.' }, { icon: , title: 'Secure by Default', description: 'Built with security best practices and regular updates.' }, { icon: , title: 'Easy to Use', description: 'Simple API and comprehensive documentation for quick setup.' } ]; return (

Why Choose Our Components?

Everything you need to build modern web applications.

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

{feature.title}

{feature.description}

))}
); }; export default FeatureCardOne;