feat: ClawHub Marketplace in Mission Control

- /mission-control/clawhub - Search, browse skills
- Install, Analyze, or Clone skills
- API route at /api/clawhub
- Added to Council navigation
This commit is contained in:
2026-03-24 16:10:36 +01:00
parent 2697a89285
commit 602dcff5b2
4 changed files with 444 additions and 9 deletions
+9 -9
View File
@@ -4,16 +4,16 @@ import BackToMC from "@/components/mission-control/BackToMC";
export default function CouncilPage() {
return (
<div className="min-h-screen bg-slate-950 text-white">
<div className="min-h-screen bg-slate-950">
<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">Loading...</p>
</div>
<div className="bg-slate-800 rounded-xl p-8 border border-slate-700">
<p className="text-slate-400">Loading...</p>
</div>
<div className="p-4">
<h1 className="text-2xl font-bold text-white mb-4">🏛 Council</h1>
<iframe
src="/council/office"
className="w-full h-[calc(100vh-200px)] rounded-xl border border-slate-700"
title="Claw3D Office"
allow="clipboard-write; socket wss:;"
/>
</div>
</div>
);