45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Syne, Instrument_Serif, DM_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const syne = Syne({
|
|
variable: "--font-syne",
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700", "800"],
|
|
});
|
|
|
|
const instrumentSerif = Instrument_Serif({
|
|
variable: "--font-instrument-serif",
|
|
subsets: ["latin"],
|
|
weight: "400",
|
|
style: ["normal", "italic"],
|
|
});
|
|
|
|
const dmMono = DM_Mono({
|
|
variable: "--font-dm-mono",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "TradingAgents — Multi-Agent Trading Intelligence",
|
|
description:
|
|
"Multi-agent LLM framework that mirrors real-world trading firm dynamics for AI-powered market analysis and trading decisions.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body
|
|
className={`${syne.variable} ${instrumentSerif.variable} ${dmMono.variable}`}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|