feat(mission-control): add all missing pages

- Automation: AutoRun, ExecutionLogs, ChangeLog, Brainown, HorusAI
- Projects: Tasks, TaskHistory, Monday
- Trading: Trading Panel, Chart, Reports, Tools (placeholders)
- Leads: Lead Manager
- System: System Status, Skills Panel, Command Center, Projects Panel
- Council: Agents roster, Sessions, Council Chat, Voice
- All pages return 200 OK
This commit is contained in:
2026-03-23 18:13:59 +01:00
parent 41c255abf2
commit 2cee0e6513
21 changed files with 579 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"use client";
import { TradingPanel } from "@/components/mission-control/TradingPanel";
export default function TradingPage() {
return (
<div className="p-6">
<TradingPanel />
</div>
);
}