import type { Metadata } from 'next' import { Inter, Exo } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'], variable: '--font-inter', display: 'swap', weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }) const exo = Exo({ subsets: ['latin'], variable: '--font-exo', display: 'swap', weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], }) export const metadata: Metadata = { title: 'CHORUS Dashboard', description: 'Lead management dashboard for CHORUS Services', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }