import type { Metadata } from "next" import { Inter } from "next/font/google" import "./globals.css" import { QueryProvider } from "@/components/providers/QueryProvider" import AuthGuard from "@/components/AuthGuard" import Script from "next/script" const inter = Inter({ subsets: ["latin"] }) export const metadata: Metadata = { title: "Audio Classifier", description: "Intelligent audio library management and classification", } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (