feat(mission-control): restore MC tabs - temple, office, memory, claude, pdf-viewer, resume, resume-upload, temple-3d, demos

Also added:
- Memory API endpoints
- Briefs API endpoints
- AnveVoice stats API
- Claude spawn API
- TTS proxy
- Cleopatra voice widget
- api-auth middleware
This commit is contained in:
2026-03-23 16:30:44 +01:00
parent d5575b58e3
commit 45af56d9cf
30 changed files with 5092 additions and 715 deletions
+24
View File
@@ -0,0 +1,24 @@
"use client";
export default function OfficePage() {
return (
<div className="min-h-screen bg-slate-950 flex flex-col">
{/* Header */}
<div className="bg-slate-900 border-b border-slate-800 px-6 py-4 flex-shrink-0">
<h1 className="text-2xl font-bold text-white">🏢 Claw3D Office</h1>
<p className="text-slate-400 text-sm">3D workspace for AI agents</p>
</div>
{/* Claw3D Embed - via Apache proxy over HTTPS */}
<div className="flex-1 relative">
<iframe
src="https://sitemente.com/claw3d/office"
className="absolute inset-0 w-full h-full border-0"
title="Claw3D Office"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
sandbox="allow-scripts allow-same-origin allow-popups allow-forms"
/>
</div>
</div>
);
}