import React from 'react'; import { ShieldCheck, Zap, TrendingDown, ArrowRight, Gavel, Database, Target, ShieldEllipsis, Coins, Copy } from 'lucide-react'; interface LandingPageProps { onEnterDashboard: () => void; } const STABLE_DEPLOY_URL = "https://silentloss-commander-v2-0-1047953835170.us-west1.run.app"; const LandingPage: React.FC = ({ onEnterDashboard }) => { const copyUrl = () => { navigator.clipboard.writeText(STABLE_DEPLOY_URL); alert("Official Demo URL copied to clipboard!"); }; return (
{/* Hero Section */}
The ROI of Algorithmic Integrity

Stop the Invisible Drain
on Your Margins.

When your AI models stay "up" but start making "wrong" financial decisions, you lose millions in silence. We detect economic drift in real-time.

{/* Competitive Comparison Table */}

The "Silent Loss" Crisis

Traditional monitoring tells you if your AI is working. It doesn't tell you if it's profitable. Logic drift—subtle changes in how a model weights risk—is responsible for billions in losses annually.

{[ { label: "Economic Drift", desc: "1% error in rate-setting costs a mid-market lender $4.2M/year.", icon: TrendingDown }, { label: "Compliance Erosion", desc: "Accidental bias in AI decisions triggers massive SEC/CFPB fines.", icon: Gavel }, { label: "Market Volatility", desc: "Real-time decision auditing for high-frequency environments.", icon: Target }, ].map((item, i) => (

{item.label}

{item.desc}

))}

Competitive Comparison (SilentLoss v2.0)

{[ ["System Uptime / Latency", "Yes (core focus)", "Standard (baseline)"], ["Dollar-Impact Awareness", "No (metrics only)", "Native economic metrics"], ["AI Decision Reasoning", "Limited or none", "Full Gemini reasoning"], ["Silent Failure Detection", "No", "Native confidence tracking"], ["Real-Time Streaming", "Partial / batch", "Confluent event-driven"], ["Voice-Driven Intervention", "No", "ElevenLabs UI + Gemini TTS"] ].map(([cap, comp, sl], i) => ( ))}
Capability Typical Competitors SilentLoss v2.0
{cap} {comp} {sl}
); }; export default LandingPage;