Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import { Syne } from "next/font/google"; | |
| import "./globals.css"; | |
| const syne = Syne({ | |
| subsets: ["latin"], | |
| weight: ["700", "800"], | |
| variable: "--font-display", | |
| display: "swap", | |
| }); | |
| export const metadata: Metadata = { | |
| title: "MetaDebate", | |
| description: "Train an LLM to improve reels through multi-agent debate and reinforcement learning", | |
| }; | |
| export default function RootLayout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html lang="en" className={syne.variable}> | |
| <body className="antialiased">{children}</body> | |
| </html> | |
| ); | |
| } | |