import Toaster from "@rahoot/web/components/Toaster" import BrandingHelmet from "@rahoot/web/components/BrandingHelmet" import ThemeHydrator from "@rahoot/web/components/ThemeHydrator" import { SocketProvider } from "@rahoot/web/contexts/socketProvider" import type { Metadata } from "next" import { Montserrat } from "next/font/google" import { PropsWithChildren } from "react" import "./globals.css" const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }) export const metadata: Metadata = { title: "Rahoot !", icons: "/icon.svg", } const RootLayout = ({ children }: PropsWithChildren) => (