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 ( {children} ) }