import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { BookOpenIcon, CircleStackIcon, Cog8ToothIcon, PuzzlePieceIcon, } from "@heroicons/react/24/solid"; 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; }>) { return (