Spaces:
Sleeping
Sleeping
File size: 339 Bytes
cce8120 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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>
);
}
|