import type { Metadata, Viewport } from "next"; import { Barlow_Condensed, Space_Grotesk, IBM_Plex_Mono } from "next/font/google"; import RegisterServiceWorker from "@/components/RegisterServiceWorker"; import "./globals.css"; const displayFont = Barlow_Condensed({ variable: "--font-display-face", weight: ["700", "900"], subsets: ["latin"], }); const spaceGrotesk = Space_Grotesk({ variable: "--font-space-grotesk", subsets: ["latin"], }); const plexMono = IBM_Plex_Mono({ variable: "--font-plex-mono", weight: ["400", "500", "600"], subsets: ["latin"], }); export const metadata: Metadata = { title: "vpinball — Visual Pinball in your browser", description: "Play real .vpx pinball tables in the browser, powered by a WebAssembly build of Visual Pinball. Drop in your own table or play the bundled demo.", }; export const viewport: Viewport = { themeColor: "#0b0b0f", }; export default function RootLayout({ children }: LayoutProps<"/">) { return ( {children} ); }