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,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>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user