Added Chat Page
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user