import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import localFont from "next/font/local"; // Wichtig: localFont importieren import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); // Konfiguration der lokalen Star Jedi Font const starJedi = localFont({ src: "../public/fonts/Starjedi.ttf", variable: "--font-starjedi", }); export const metadata: Metadata = { title: "Outer Rim Smuggler", description: "A Star Wars inspired roguelike adventure", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }