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:
2026-03-23 19:35:06 +01:00
parent e33898ec2e
commit fd9cbcb8a5
29 changed files with 219 additions and 164 deletions
+13 -16
View File
@@ -1,23 +1,20 @@
"use client";
import BackToMC from "@/components/mission-control/BackToMC";
export default function DocsPage() {
return (
<div className="p-6">
<h1 className="text-2xl font-bold mb-4">SiteMente Docs</h1>
<p className="text-white/60 mb-4">Long-term documentation for SiteMente operations.</p>
<div className="space-y-4">
<div className="p-4 rounded-lg bg-white/5 border border-white/10">
<h2 className="font-bold mb-2">Getting Started</h2>
<p className="text-white/60 text-sm">Quick start guides and setup instructions</p>
<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">📚 Docs</h1>
<p className="text-slate-400">Loading...</p>
</div>
<div className="p-4 rounded-lg bg-white/5 border border-white/10">
<h2 className="font-bold mb-2">Products</h2>
<p className="text-white/60 text-sm">Smart Starter, Smart Site, AI Growth Partner</p>
</div>
<div className="p-4 rounded-lg bg-white/5 border border-white/10">
<h2 className="font-bold mb-2">Integrations</h2>
<p className="text-white/60 text-sm">Vapi, MiniMax, Stripe</p>
<div className="bg-slate-800 rounded-xl p-8 border border-slate-700">
<p className="text-slate-400">Loading...</p>
</div>
</div>
</div>
)
);
}