feat(mission-control): add BackToMC button to all pages

- Created BackToMC component
- Added to all 27 mission control pages
- Each page now has '← Back to Mission Control' button at top
- Also pushed beta to develop to sync branches
This commit is contained in:
2026-03-23 18:26:37 +01:00
parent 2cee0e6513
commit 00908900c8
28 changed files with 364 additions and 1561 deletions
+10 -6
View File
@@ -1,15 +1,19 @@
"use client";
import BackToMC from "@/components/mission-control/BackToMC";
import HorusChat from "@/components/mission-control/HorusChat";
export default function CouncilPage() {
return (
<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>
<>
<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>
</div>
<HorusChat />
</div>
<HorusChat />
</div>
</>
);
}