This commit is contained in:
cdricms
2025-02-18 13:14:58 +01:00
parent ec3f33b9bf
commit 446813315d
10 changed files with 576 additions and 33 deletions

View File

@@ -3,6 +3,7 @@ import { Geist, Geist_Mono } from "next/font/google";
import "@/app/globals.css";
import SWRLayout from "@/components/layouts/swr-layout";
import { ThemeProvider } from "@/components/ThemeProvider";
import { Toaster } from "@/components/ui/toaster";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -47,6 +48,7 @@ export default function RootLayout({
disableTransitionOnChange
>
<SWRLayout>{children}</SWRLayout>
<Toaster />
</ThemeProvider>
</body>
</html>