Closes #010 - Implement Whale Satellite Screener: VoC weighting and SEC 13F filing integration

This commit is contained in:
Antigravity Agent
2026-06-12 21:06:37 +02:00
parent 6e4dd29d1d
commit 00e88eedb2
6 changed files with 779 additions and 2 deletions

View File

@@ -8,10 +8,11 @@ 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 { BarChart3, TrendingUp, ShieldAlert, Radio, Landmark, RefreshCw, Activity, Cpu } from 'lucide-react';
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' | 'insider' | 'crypto' | 'events' | 'macro' | 'tech'>('sandbox');
const [activeTab, setActiveTab] = useState<'sandbox' | 'scanner' | 'insider' | 'crypto' | 'events' | 'macro' | 'tech' | 'whale'>('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">
@@ -106,6 +107,12 @@ export default function Home() {
>
<Cpu className="w-4 h-4" /> [ AI Special Silo]
</button>
<button
onClick={() => setActiveTab('whale')}
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 === 'whale' ? 'bg-gradient-to-r from-blue-500 to-teal-500 text-slate-950 font-bold shadow-lg shadow-blue-500/25' : 'text-slate-400 hover:text-slate-200 hover:bg-slate-900/50'}`}
>
<Compass className="w-4 h-4" /> [🐋 Whale Screener]
</button>
</div>
</div>
</div>
@@ -122,6 +129,7 @@ export default function Home() {
{activeTab === 'events' && <EventsDemo />}
{activeTab === 'macro' && <MacroIndicatorsDemo />}
{activeTab === 'tech' && <AiSpecialSilo />}
{activeTab === 'whale' && <WhaleScreener />}
</div>
</main>