Files
sitemente/app/mission-control/docs/page.tsx
T
2026-02-22 23:06:09 +00:00

24 lines
1013 B
TypeScript

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>
<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>
</div>
</div>
)
}