import type { Metadata } from "next"; import { Space_Grotesk, Inter } from "next/font/google"; import "./globals.css"; const spaceGrotesk = Space_Grotesk({ subsets: ["latin"], weight: ["300", "400", "500", "700"], variable: "--font-headline", display: "swap", }); const inter = Inter({ subsets: ["latin"], weight: ["300", "400", "600"], variable: "--font-body", display: "swap", }); export const metadata: Metadata = { title: "COREWORLDS.IO // TACTICAL_TERMINAL", description: "Interface with the Coreworlds terminal. A high-clearance orbital research module.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Global CRT Overlay */} {children} ); }