David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
285 Bytes
"use client";
export default function StatusBar() {
return (
<footer className="h-8 bg-slate-900 border-t border-slate-800 flex items-center justify-between px-4 text-xs text-slate-300">
<span>Dolor3V Studio</span>
<span>Production Ready</span>
</footer>
);
}