import { QueryProviders } from "@/components/providers/query-provider"; import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import { Toaster } from "sonner"; import "./globals.css"; const geist = Geist({ variable: "--font-geist-sans", subsets: ["latin"], weight: ["400", "500", "600", "700", "800", "900"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], weight: ["400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Create Next App - StackKit", description: "Generated by create next app with StackKit template", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (