TradingAgents/ui/app/layout.tsx

36 lines
763 B
TypeScript

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