import type { Metadata } from "next"; import { Outfit, JetBrains_Mono } from "next/font/google"; import "./globals.css"; import { ClientProviders } from "@/components/ClientProviders"; const outfit = Outfit({ variable: "--font-geist-sans", subsets: ["latin"], weight: ["300", "400", "500", "600", "700", "800"], }); const jetbrains = JetBrains_Mono({ variable: "--font-geist-mono", subsets: ["latin"], weight: ["400", "500", "600"], }); export const metadata: Metadata = { title: "API Analytics — Neural Pulse", description: "Real-time API usage analytics dashboard", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (