import type { Metadata } from "next"; import { Orbitron, Rajdhani } from "next/font/google"; import "./globals.css"; import RootLayoutClient from "./root-layout-client"; const orbitron = Orbitron({ subsets: ["latin"], variable: "--font-orbitron", display: "swap", }); const rajdhani = Rajdhani({ subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], variable: "--font-rajdhani", display: "swap", }); export const metadata: Metadata = { title: { default: "EldritchWeave", template: "%s ยท EldritchWeave", }, description: "Curated apothecary, grimoires, covenants, and shadow rails.", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }