import type { Metadata } from 'next'; import Link from 'next/link'; import './globals.css'; export const metadata: Metadata = { title: 'unloze — server stats', description: 'Playtime, population and map stats for the unloze server', }; const NAV_ITEMS = [ { href: '/', label: 'Overview' }, { href: '/players', label: 'Players' }, { href: '/maps', label: 'Maps' }, { href: '/countries', label: 'Countries' }, ]; export default function RootLayout({ children }: { children: React.ReactNode }) { return (