import { useState } from "react"; import { Monitor, Shield, Bell, TrendingUp, Clock, Wifi, HardDrive, Cpu, Activity, AlertTriangle, CheckCircle, ArrowRight, Check } from "lucide-react"; import Navigation from "@/components/Navigation"; import Footer from "@/components/Footer"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { Link } from "react-router-dom"; const CybersecurityServices = () => { const [showDemo, setShowDemo] = useState(false); const [simulationActive, setSimulationActive] = useState(false); const features = [ { icon: Monitor, title: "24/7 Monitoring", description: "Continuous surveillance of all your systems", benefit: "99.9% uptime" }, { icon: Bell, title: "Instant Alerts", description: "Real-time notifications for any issues", benefit: "<5min response" }, { icon: Shield, title: "Threat Protection", description: "Proactive security monitoring and patching", benefit: "Zero-day protection" }, { icon: HardDrive, title: "Automated Backups", description: "Daily backups with instant recovery options", benefit: "15-min recovery" }, { icon: Cpu, title: "Performance Optimization", description: "Keep systems running at peak efficiency", benefit: "30% faster" }, { icon: TrendingUp, title: "Predictive Analytics", description: "AI-powered insights to prevent issues", benefit: "85% issue prevention" } ]; const monitoringMetrics = [ { icon: Activity, label: "CPU Usage", value: "42%", status: "healthy" }, { icon: HardDrive, label: "Disk Space", value: "68%", status: "healthy" }, { icon: Wifi, label: "Network", value: "125 Mbps", status: "healthy" }, { icon: Clock, label: "Uptime", value: "99.98%", status: "excellent" } ]; const tiers = [ { name: "Essential", price: "AED 2,500/month", devices: "Up to 25 devices", features: [ "24/7 system monitoring", "Automated alerts", "Monthly reports", "Email support", "Basic patching" ] }, { name: "Professional", price: "AED 5,000/month", devices: "Up to 100 devices", popular: true, features: [ "Everything in Essential", "Real-time dashboards", "Automated patching", "Priority phone support", "Backup management", "Performance optimization" ] }, { name: "Enterprise", price: "Custom pricing", devices: "Unlimited devices", features: [ "Everything in Professional", "Dedicated account manager", "Custom integrations", "Advanced analytics", "SLA guarantees", "On-site support available" ] } ]; const benefits = [ { title: "Reduced Downtime", stat: "95%", description: "Issues detected and resolved before impact" }, { title: "Cost Savings", stat: "60%", description: "Reduction in emergency IT costs" }, { title: "Faster Resolution", stat: "10x", description: "Problems fixed before users notice" }, { title: "Security Updates", stat: "100%", description: "All systems always patched and protected" } ]; return (
{/* Hero Section */} {/*

Cybersecurity Services

Never worry about IT infrastructure again.

24/7 remote monitoring and management that keeps your business running smoothly.

{monitoringMetrics.map((metric, i) => (
{metric.label}
{metric.value}
))}
*/} {/* Features Grid */}

Comprehensive Monitoring & Management

Protect your infrastructure with enterprise-grade monitoring

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

{feature.title}

{feature.description}

{feature.benefit}
))}
{/* Live Status Simulation */} {/*

Live Dashboard Preview

See how our monitoring system keeps your infrastructure healthy

{!simulationActive ? (
) : (
{[ { type: "success", message: "All systems operational", icon: CheckCircle }, { type: "info", message: "Backup completed successfully", icon: HardDrive }, { type: "warning", message: "High CPU usage detected - optimizing", icon: AlertTriangle }, { type: "success", message: "Security patch applied", icon: Shield } ].map((alert, index) => (
{alert.message} Just now
))}
)}
*/} {/* Benefits Stats */}

Measurable Business Impact

{benefits.map((benefit, index) => (
{benefit.stat}

{benefit.title}

{benefit.description}

))}
{/* Pricing Tiers */} {/*

Choose Your Monitoring Plan

Flexible plans that scale with your business

{tiers.map((tier, index) => ( {tier.popular && (
Most Popular
)}

{tier.name}

{tier.price}
{tier.devices}
    {tier.features.map((feature, i) => (
  • {feature}
  • ))}
))}
*/} {/* CTA Section */}

Ready to Protect Your Infrastructure?

Start monitoring your systems today with a free 30-day trial

{!showDemo ? ( ) : (

Request Received!

Our Cybersecurity specialists will set up your trial within 24 hours.

)}
); }; export default CybersecurityServices;