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 */}
{[
{ id: 'solutions', label: 'Solutions' },
{ id: 'hardware', label: 'Hardware' },
{ id: 'sectors', label: 'Sectors' },
{ id: 'company', label: 'Company' }
].map((item) => (
setActiveTab(item.id as any)}
className={`transition-all relative group py-2 uppercase ${activeTab === item.id ? 'text-cyan-400' : 'hover:text-cyan-400'}`}
>
<
{item.label}
/>
))}
setActiveTab('home')} className="text-[10px] font-bold text-gray-500 hover:text-white uppercase tracking-[0.2em] hidden sm:block transition-colors border border-transparent hover:border-gray-800 px-4 py-2">
Login_Portal
Initialize
{/* 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.
setActiveTab('solutions')} className="cyber-button bg-white text-black hover:bg-cyan-50 px-10 py-4 text-xs font-bold uppercase tracking-[0.2em] flex items-center gap-4 transition-all hover:pr-12 group shadow-[0_0_20px_rgba(255,255,255,0.3)]">
Execute Protocol
Simulation
{[
{ 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) => (
))}
>
)}
{/* SOLUTIONS VIEW */}
{activeTab === '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) => (
))}
)}
{/* HARDWARE VIEW */}
{activeTab === '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) => (
))}
)}
{/* 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' && (
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.
)}
{/* MAP INTEGRATION */}
{activeTab === 'home' && (
)}
{/* Footer / CTA */}
{[
{ val: '500+', label: 'NODES ACTIVE' },
{ val: '0.01ms', label: 'LATENCY' },
{ val: '100%', label: 'UPTIME' },
{ val: 'SECURE', label: 'STATUS' }
].map((stat, i) => (
))}
SECURE YOUR FUTURE
Initiate contact with our security architects. Design a defense strategy leveraging next-gen technologies.
Initialize Sequence
Download Manifest
© 2024 STEELGUARD DEFENSE SYSTEMS.
SYSTEM_ID: MW-ENT-8842
);
};