File size: 1,513 Bytes
424c5d9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";

import ClientHeader from "./components/ClientHeader";
import ModalManager from "./components/ModalManager";
import {Suspense} from "react";

const geistSans = Geist({
  variable: "--font-geist-sans",
  subsets: ["latin"],
});

const geistMono = Geist_Mono({
  variable: "--font-geist-mono",
  subsets: ["latin"],
});

export const metadata = {
  title: "COLE - Comprehensive Benchmark for French Language Understanding",
  description: "COLE is a benchmark of 23 tasks for evaluating French Natural Language Understanding (NLU) in large language models.",
  openGraph: {
    title: "COLE - French NLU Benchmark",
    description: "Evaluate LLMs on 23 French NLU tasks: sentiment analysis, NLI, QA, and more.",
    url: "https://colebenchmark.org",
    siteName: "COLE Benchmark",
    type: "website",
  },
  twitter: {
    card: "summary",
    title: "COLE - French NLU Benchmark",
    description: "Evaluate LLMs on 23 French NLU tasks: sentiment analysis, NLI, QA, and more.",
  },
};

export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
        <ClientHeader />
        <main className="w-full flex justify-center px-4 pt-8">
          <div className="w-full max-w-7xl">{children}</div>
        </main>
        <Suspense fallback={null}>
          <ModalManager/>
        </Suspense>
      </body>
    </html>
  );
}