import type { Metadata } from "next"; import { Inter, JetBrains_Mono } from "next/font/google"; import "./globals.css"; import { Providers } from "@/components/Providers"; const inter = Inter({ subsets: ["latin"], weight: ["400", "500", "700", "800"], variable: "--font-inter", }); const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], weight: ["500", "700", "800"], variable: "--font-jetbrains", }); export const metadata: Metadata = { title: "AssetX Dashboard", description: "DeFi Asset Management Platform", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }