David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
337 Bytes
"use client";
export default function ActivityBar() {
return (
<aside className="w-14 h-full bg-slate-950 border-r border-slate-800 flex flex-col items-center py-3 gap-4">
<button>πŸ“</button>
<button>🧠</button>
<button>πŸ’¬</button>
<button>β–Ά</button>
<button>βš™</button>
</aside>
);
}