Added Chat Page

This commit is contained in:
2026-01-21 18:13:35 +01:00
parent 0ca8ce8b52
commit 3eed79ca93
37 changed files with 3966 additions and 64 deletions

View File

@@ -1,6 +1,8 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import "./globals.css";
import { NotificationProvider } from "@/components/NotificationProvider";
import MessageNotifications from "@/components/MessageNotifications";
const poppins = Poppins({
weight: ["300", "400", "500", "600", "700"],
@@ -21,7 +23,12 @@ export default function RootLayout({
}>) {
return (
<html lang="fr">
<body className={poppins.variable}>{children}</body>
<body className={poppins.variable}>
<NotificationProvider>
{children}
<MessageNotifications />
</NotificationProvider>
</body>
</html>
);
}