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: "CyberLux", template: "%s ยท CyberLux", }, description: "Curated storefront, catalog, forums, and Tor companion rails.", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }