David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
339 Bytes
import {AuthProvider} from "../context/AuthContext";
import "./globals.css";
export const metadata = {
title: "Dolor3V Studio",
description: "Production AI Workspace"
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);
}