42 lines
977 B
TypeScript
42 lines
977 B
TypeScript
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 (
|
|
<html
|
|
lang="en"
|
|
className={`${manrope.variable} ${syne.variable} ${jetbrainsMono.variable} h-full antialiased`}
|
|
>
|
|
<body className="min-h-full flex flex-col">{children}</body>
|
|
</html>
|
|
)
|
|
}
|