import type { Metadata } from "next"; import { JetBrains_Mono, Inter } from "next/font/google"; import "./globals.css"; import { CommandPalette } from "@/components/command-palette"; import { LocaleToggle, getLocale } from "@/components/locale-toggle"; const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }); const mono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono" }); export const metadata: Metadata = { title: "The Disclosure Bureau", description: "Investigative wiki of the US Department of War UAP/UFO archive (war.gov/ufo)", }; export default async function RootLayout({ children }: { children: React.ReactNode }) { const locale = await getLocale(); return (
{children}