admin interface basic functionalities

This commit is contained in:
Quentin Roussel
2024-03-26 01:21:26 +01:00
parent 2478ee32ec
commit b23d2a63e6
24 changed files with 1504 additions and 40 deletions

View File

@@ -1,5 +1,6 @@
import { Inter } from "next/font/google";
import "./globals.css";
import SocketProvider from "@/context/socketContext";
const inter = Inter({ subsets: ["latin"] });
@@ -10,7 +11,9 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className + " h-screen"}>{children}</body>
<SocketProvider>
<body className={inter.className + " h-screen"}>{children}</body>
</SocketProvider>
</html>
);
}