rai-bench / src /app /layout.tsx
rohanjaggi
fix: layout and css adjustments
40f4a8e
Raw
History Blame Contribute Delete
753 Bytes
import type { Metadata } from 'next'
import { Lato } from 'next/font/google'
import './globals.css'
const lato = Lato({
subsets: ['latin'],
weight: ['300', '400', '700', '900'],
style: ['normal', 'italic'],
variable: '--font-lato',
display: 'swap',
})
export const metadata: Metadata = {
title: 'Responsible AI Bench',
description:
'Independent benchmark evaluating large language models on localised safety, RAG robustness, and demographic fairness for Singapore deployment.',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={lato.variable} suppressHydrationWarning>
<body className="min-h-screen flex flex-col">{children}</body>
</html>
)
}