'use client'; import React, { useState } from 'react'; import SandboxDemo from '@/components/modules/sandbox/SandboxDemo'; import ScannerDemo from '@/components/modules/scanner/ScannerDemo'; import InsiderDemo from '@/components/modules/insider/InsiderDemo'; import CryptoDemo from '@/components/modules/crypto/CryptoDemo'; import EventsDemo from '@/components/modules/events/EventsDemo'; import MacroIndicatorsDemo from '@/components/modules/macro/MacroIndicatorsDemo'; import AiSpecialSilo from '@/components/modules/tech/AiSpecialSilo'; import WhaleScreener from '@/components/modules/whale/WhaleScreener'; import { BarChart3, TrendingUp, ShieldAlert, Radio, Landmark, RefreshCw, Activity, Cpu, Compass } from 'lucide-react'; export default function Home() { const [activeTab, setActiveTab] = useState<'sandbox' | 'scanner' | 'smart-money' | 'crypto' | 'events' | 'macro' | 'tech'>('sandbox'); const [smartMoneySubTab, setSmartMoneySubTab] = useState<'flows' | 'screener'>('flows'); return (
{/* Background Decorative Blur Gradients */}
{/* Main Header / Navigation */}

QuantSandbox Econometrics

AI-Powered Investment Sandbox

Connection Active
Workspace: investment-sandbox
{/* Hero Banner Section */}
Scaffolding Version 1.0.0

Statistical Investment Analysis & Sandbox

This modular architecture pools advanced econometric models – from EWMA and GJR-GARCH volatility forecasts to Bayesian on-chain learning, survival analysis, and LMM panel regressions.

{/* Main Content Area */}
{/* Active Module Rendering */}
{activeTab === 'sandbox' && } {activeTab === 'scanner' && } {activeTab === 'smart-money' && (
{smartMoneySubTab === 'flows' ? : }
)} {activeTab === 'crypto' && } {activeTab === 'events' && } {activeTab === 'macro' && } {activeTab === 'tech' && }
{/* Footer */}
); }