Files
sitemente/app/mission-control/council/page.tsx
T
horus 602dcff5b2 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
2026-03-24 16:10:36 +01:00

21 lines
560 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 CouncilPage() {
return (
<div className="min-h-screen bg-slate-950">
<BackToMC />
<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>
);
}