MetaDebate / web-ui /app /layout.tsx
vajeeda's picture
final mvp created
98b952a
Raw
History Blame Contribute Delete
604 Bytes
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>
);
}