const Features = () => { const features = [ { icon: "cpu", title: "Blazing Fast Performance", description: "Optimized with modern React and Tailwind for lightning-fast load times and smooth animations." }, { icon: "smartphone", title: "Fully Responsive", description: "Looks great on any device, from mobile phones to large desktop displays." }, { icon: "moon", title: "Dark Mode Ready", description: "Automatic dark mode detection with toggle option for user preference." }, { icon: "code", title: "Clean Code", description: "Modular components with proper separation of concerns for easy maintenance." } ]; return (

Why Choose PixelPulse?

We combine cutting-edge technology with elegant design to deliver exceptional digital experiences.

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

{feature.title}

{feature.description}

))}
); }