import type { Metadata } from 'next' import { Manrope, Syne, JetBrains_Mono } from 'next/font/google' import './globals.css' const manrope = Manrope({ variable: '--font-manrope', subsets: ['latin'], weight: ['400', '500', '600', '700', '800'], }) const syne = Syne({ variable: '--font-syne', subsets: ['latin'], weight: ['700', '800'], }) const jetbrainsMono = JetBrains_Mono({ variable: '--font-mono', subsets: ['latin'], weight: ['400', '500', '600', '700'], }) export const metadata: Metadata = { title: 'TradingAgents — Multi-Agent AI Analysis', description: 'Institutional-grade multi-agent trading intelligence', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }