import { Cpu, Shield, Zap, Globe, HardDrive, Network } from "lucide-react"; const featureCards = [ { icon: Cpu, title: "AMD Ryzen Processors", description: "Latest generation AMD Ryzen processors delivering exceptional performance for your gaming needs.", }, { icon: Shield, title: "DDoS Protection", description: "Enterprise-grade protection against DDoS attacks, keeping your server safe 24/7.", }, { icon: Zap, title: "Low Latency Network", description: "Optimized network infrastructure ensuring minimal latency for smooth gameplay.", }, { icon: HardDrive, title: "NVMe Storage", description: "Lightning-fast NVMe SSDs for rapid game loading and data access times.", }, // { // icon: Network, // title: "Multi-Location", // description: // "Strategic server locations worldwide for optimal ping and performance", // }, // { // icon: Globe, // title: "Global CDN", // description: // "Content delivery network ensuring fast downloads and updates worldwide", // }, ]; const FeatureCard = ({ icon: Icon, title, description }) => { return (

{title}

{description}

); }; export const FeatureSection = () => { return (
{/* Header */}

Powered by Premium Hardware

Experience top-tier performance with our enterprise-grade infrastructure, designed specifically for gaming excellence.

{/* Feature Cards Grid */}
{featureCards.map((card, index) => ( ))}
View Full Specifications
); }; export default FeatureSection;