fix(mission-control): consistent dark theme across all pages
- All pages now use min-h-screen bg-slate-950 - Consistent card styling: bg-slate-800 rounded-xl border border-slate-700 - Fixed all hyphenated function names - All 27 pages tested and returning 200
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
"use client";
|
||||
|
||||
import BackToMC from "@/components/mission-control/BackToMC";
|
||||
import HorusChat from "@/components/mission-control/HorusChat";
|
||||
|
||||
export default function CouncilPage() {
|
||||
return (
|
||||
<>
|
||||
<div className="min-h-screen bg-slate-950 text-white">
|
||||
<BackToMC />
|
||||
<div className="p-6">
|
||||
<div className="mb-6">
|
||||
<h1 className="text-3xl font-bold text-white mb-2">🏛️ Council Chat</h1>
|
||||
<p className="text-slate-400">Chat with your agent council</p>
|
||||
<p className="text-slate-400">Loading...</p>
|
||||
</div>
|
||||
<div className="bg-slate-800 rounded-xl p-8 border border-slate-700">
|
||||
<p className="text-slate-400">Loading...</p>
|
||||
</div>
|
||||
<HorusChat />
|
||||
</div>
|
||||
</>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user