diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4f6b687..de9e81b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,7 @@ import "@/app/globals.css"; import { cn } from "@/lib/utils"; import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import { QueryProvider } from "@/components/query-provider"; import { ThemeProvider } from "@/components/theme-provider"; const inter = Inter({ subsets: ["latin"] }); @@ -19,14 +20,16 @@ export default function RootLayout({ children }: Readonly) { return ( - - {children} - + + + {children} + + );