import { Geist_Mono, Inter } from "next/font/google" import "./globals.css" import { ThemeProvider } from "@/components/theme-provider" import { cn } from "@/lib/utils" import { TooltipProvider } from "@/components/ui/tooltip" import { Providers } from "./providers" const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }) const fontMono = Geist_Mono({ subsets: ["latin"], variable: "--font-mono", }) export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (