Nora Petrova
Add project to new space
20e666e
raw
history blame
513 Bytes
import { Inter } from 'next/font/google';
import './globals.css';
const inter = Inter({ subsets: ['latin'] });
export const metadata = {
title: 'LLM Comparison Leaderboard',
description: 'Interactive leaderboard comparing performance of state-of-the-art large language models across various tasks and metrics.',
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={`${inter.className} bg-gray-50`}>
{children}
</body>
</html>
);
}