import type { Metadata } from 'next' import { Manrope, Inter } from 'next/font/google' import './globals.css' const manrope = Manrope({ variable: '--font-manrope', subsets: ['latin'], weight: ['400', '500', '600', '700', '800'], }) const inter = Inter({ variable: '--font-inter', subsets: ['latin'], weight: ['400', '500', '600'], }) export const metadata: Metadata = { title: 'TradingAgents', description: 'Multi-agent trading analysis', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }