Deploy Phase 4.7: AI & Tech Special Silo and create QUANT_ROADMAP.md

This commit is contained in:
Antigravity Agent
2026-06-12 14:15:52 +02:00
parent 8f0e887b9c
commit d94c4aeb99
5 changed files with 1335 additions and 2 deletions

View File

@@ -7,10 +7,11 @@ 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 { BarChart3, TrendingUp, ShieldAlert, Radio, Landmark, RefreshCw, Activity } from 'lucide-react';
import AiSpecialSilo from '@/components/modules/tech/AiSpecialSilo';
import { BarChart3, TrendingUp, ShieldAlert, Radio, Landmark, RefreshCw, Activity, Cpu } from 'lucide-react';
export default function Home() {
const [activeTab, setActiveTab] = useState<'sandbox' | 'scanner' | 'insider' | 'crypto' | 'events' | 'macro'>('sandbox');
const [activeTab, setActiveTab] = useState<'sandbox' | 'scanner' | 'insider' | 'crypto' | 'events' | 'macro' | 'tech'>('sandbox');
return (
<div className="min-h-screen bg-[#070b13] text-slate-100 flex flex-col font-sans selection:bg-teal-500/30 selection:text-teal-200">
@@ -99,6 +100,12 @@ export default function Home() {
>
<Activity className="w-4 h-4" /> Eco Indicators
</button>
<button
onClick={() => setActiveTab('tech')}
className={`flex-1 lg:flex-none px-4 py-2.5 rounded-xl text-xs font-semibold flex items-center justify-center gap-2 transition-all ${activeTab === 'tech' ? 'bg-gradient-to-r from-teal-500 to-indigo-500 text-white font-bold shadow-lg shadow-teal-500/25' : 'text-slate-400 hover:text-slate-200 hover:bg-slate-900/50'}`}
>
<Cpu className="w-4 h-4" /> [ AI Special Silo]
</button>
</div>
</div>
</div>
@@ -114,6 +121,7 @@ export default function Home() {
{activeTab === 'crypto' && <CryptoDemo />}
{activeTab === 'events' && <EventsDemo />}
{activeTab === 'macro' && <MacroIndicatorsDemo />}
{activeTab === 'tech' && <AiSpecialSilo />}
</div>
</main>