import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { BookOpenIcon, CircleStackIcon, Cog8ToothIcon, PuzzlePieceIcon, QuestionMarkCircleIcon, } from "@heroicons/react/24/solid"; import Link from "next/link"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Tabletop Commander", description: "Rules and tools for tabletop games!", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { const navItems = [ { to: "/schemas", icon: CircleStackIcon, text: "Schemas", }, { to: "/game-systems", icon: PuzzlePieceIcon, text: "Game Systems", }, { to: "/publications", icon: BookOpenIcon, text: "Publications", }, { to: "/settings", icon: Cog8ToothIcon, text: "Settings", }, { to: "/help", icon: QuestionMarkCircleIcon, text: "How do?", }, ]; return (
{children}
); }