/** * llmindex.io — root layout (responsive header + maintainer-credited footer) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ import type { Metadata, Viewport } from 'next'; import Link from 'next/link'; import { Logo } from '@/components/Logo'; import './globals.css'; export const metadata: Metadata = { metadataBase: new URL(process.env.PUBLIC_BASE_URL ?? 'https://www.llmindex.io'), title: { default: 'LLM Index — discriminative, contamination-resistant LLM rankings', template: '%s · LLM Index', }, description: 'The most discriminative, contamination-resistant, fully transparent LLM ranking. IRT-based scoring, dynamic item generation, pairwise duels, calibration and an efficiency frontier — updated live.', }; export const viewport: Viewport = { themeColor: '#fafafa', width: 'device-width', initialScale: 1, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (
{children}
); }