import type { Metadata } from "next"; import { IBM_Plex_Mono, Instrument_Serif } from "next/font/google"; import Link from "next/link"; import "./globals.css"; const instrument = Instrument_Serif({ weight: "400", subsets: ["latin"], variable: "--font-instrument", display: "swap", }); const plexMono = IBM_Plex_Mono({ weight: ["400", "500", "600"], subsets: ["latin"], variable: "--font-plex-mono", display: "swap", }); export const metadata: Metadata = { title: "Lumbridge Bench", description: "Evidence for models on Lumbridge Compute: quality, serving performance, and exact hardware provenance.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (