import { useState } from 'react' import { motion, AnimatePresence } from 'framer-motion' import { Terminal, Copy, Check, ChevronRight, Server, Command, Shield } from 'lucide-react' export default function DeploymentHub() { const [copied, setCopied] = useState(false) const installCmd = "curl -fsSL https://raw.githubusercontent.com/NoFxAiOS/nofx/main/install.sh | bash" const handleCopy = () => { navigator.clipboard.writeText(installCmd) setCopied(true) setTimeout(() => setCopied(false), 2000) } return (
{/* Background Grids */}
{/* Left Column: Context */}
System Deployment

DEPLOY INSTANTLY

Initialize your own high-frequency trading node in seconds. Our optimized installer handles all dependencies, bringing the trading system online with a single command.

{[ { icon: Command, label: "One-Line Install", desc: "No configuration needed" }, { icon: Shield, label: "Secure Core", desc: "Sandboxed execution env" } ].map((item, i) => (

{item.label}

{item.desc}

))}
{/* Right Column: Terminal */} {/* Glow effect */}
{/* Terminal Header */}
root@nofx-os:~
{/* Terminal Content */}
# Initialize NoFX Core Protocol
{installCmd}
{copied ? ( ) : (
)}
) }