import { Inter as FontSans } from "@next/font/google" import "@/styles/globals.css" import { cn } from "@/lib/utils" import { Toaster } from "@/ui/toast" import { Help } from "@/components/help" import { Analytics } from "@/components/analytics" import { TailwindIndicator } from "@/components/tailwind-indicator" const fontSans = FontSans({ subsets: ["latin"], variable: "--font-inter", }) interface RootLayoutProps { children: React.ReactNode } function RootLayout({ children }: RootLayoutProps) { return ( {children} ) }