Files
sitemente/app/mission-control/command/page.tsx
T
horus 00908900c8 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
2026-03-23 18:26:37 +01:00

21 lines
557 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import BackToMC from "@/components/mission-control/BackToMC";
export default function CommandPage() {
return (
<>
<BackToMC />
<div className="p-6">
<div className="mb-6">
<h1 className="text-3xl font-bold text-white mb-2"> Command Center</h1>
<p className="text-slate-400">Execute commands</p>
</div>
<div className="bg-slate-800 rounded-lg p-8 text-center">
<p className="text-slate-400">Command center loading...</p>
</div>
</div>
</>
);
}