import React, { useEffect, useState } from 'react'; import { ArrowLeft, Shield, Lock, Eye, Server, Cpu, Globe, ChevronDown, PlayCircle, Fingerprint, Scan, Activity, Radio, Terminal, Box, Building2, Users, MapPin } from 'lucide-react'; import { Link } from 'react-router-dom'; export const Steelguard: React.FC = () => { const [scrolled, setScrolled] = useState(false); const [activeTab, setActiveTab] = useState<'home' | 'solutions' | 'hardware' | 'sectors' | 'company'>('home'); useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 20); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); // Reset scroll when changing tabs useEffect(() => { window.scrollTo({ top: 0, behavior: 'smooth' }); }, [activeTab]); return (
{/* INJECTED STYLES FOR ADVANCED ANIMATIONS */} {/* Return to Main Site */}
{/* Enterprise Navbar */} {/* Main Content Router Simulation */}
{/* HOME VIEW */} {activeTab === 'home' && ( <>
ESTABLISHING SECURE CONNECTION...

TOTAL
DEFENSE

Advanced AI-driven security architecture for enterprise infrastructure. Zero-trust protocols and predictive threat neutralization active.

Tech Visual

Status

OPTIMAL_FLOW

{[ { icon: Eye, title: 'Neural Surveillance', desc: 'Real-time object recognition and behavioral prediction algorithms.' }, { icon: Scan, title: 'Retinal Access', desc: '99.999% accuracy biometric entry points with liveness detection.' }, { icon: Server, title: 'Core Defense', desc: 'Hardened physical and logical shielding for data centers.' }, { icon: Globe, title: 'Global Ops', desc: '24/7 localized threat monitoring from orbit-synced satellites.' }, { icon: Cpu, title: 'IoT Mesh', desc: 'Thousands of interconnected sensors forming an unbreakable web.' }, { icon: Shield, title: 'Hybrid Firewall', desc: 'Simultaneous protection against kinetic and digital intrusion.' }, ].map((item, i) => (

{item.title}

{item.desc}

))}
)} {/* SOLUTIONS VIEW */} {activeTab === 'solutions' && (

Strategic Solutions

We offer a multi-layered security stack designed to neutralize threats before they reach your perimeter.

{[ { title: "Zero Trust Architecture", desc: "Never trust, always verify. Every node is isolated and encrypted." }, { title: "Predictive AI Shield", desc: "Our neural networks predict intrusion patterns with 99.8% accuracy." }, { title: "Cloud Integration", desc: "Seamless security across AWS, Azure, and private data centers." } ].map((sol, i) => (

{sol.title}

{sol.desc}

))}
Solution
)} {/* HARDWARE VIEW */} {activeTab === 'hardware' && (

Hardened Hardware

{[ { icon: Box, name: "Node V4 Unit", img: "https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=800&q=80" }, { icon: Cpu, name: "Neural Processor", img: "https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?auto=format&fit=crop&w=800&q=80" }, { icon: Shield, name: "Quantum Enclosure", img: "https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=800&q=80" } ].map((hw, i) => (
{hw.name}
{hw.name}
))}
)} {/* SECTORS VIEW */} {activeTab === 'sectors' && (

Strategic Sectors

Steelguard protects the infrastructure that power nations.

{[ { icon: Building2, label: "Enterprise", count: "400+ Nodes" }, { icon: Globe, label: "Government", count: "12 Nations" }, { icon: Shield, label: "Defense", count: "Active Mesh" } ].map((sector, i) => (

{sector.label}

{sector.count}
))}
)} {/* COMPANY VIEW */} {activeTab === 'company' && (
Office
Origins

Engineering
Secured Future

Founded in 2042, Steelguard Defense Systems has evolved from a small hardware research lab into a global leader in AI-driven security architecture. Our mission is absolute protection through innovation.

15

Global Hubs

850+

Architects

)} {/* MAP INTEGRATION */} {activeTab === 'home' && (

Command Center HQ

)}
{/* Footer / CTA */}
); };