import "./globals.css"; import type { Metadata } from "next"; import type { ReactNode } from "react"; import { ClerkProvider } from "@clerk/nextjs"; import { IBM_Plex_Sans, Sora } from "next/font/google"; export const metadata: Metadata = { title: "OpenClaw Mission Control", description: "A calm command center for every task.", }; const bodyFont = IBM_Plex_Sans({ subsets: ["latin"], display: "swap", variable: "--font-body", weight: ["400", "500", "600", "700"], }); const headingFont = Sora({ subsets: ["latin"], display: "swap", variable: "--font-heading", weight: ["500", "600", "700"], }); export default function RootLayout({ children }: { children: ReactNode }) { return ( {children} ); }