import type { Metadata } from "next" import { Inter, Crimson_Pro, JetBrains_Mono } from "next/font/google" import "./globals.css" import { ThemeProvider } from "@/components/theme-provider" import { cn } from "@/lib/utils" import { NavLinks } from "@/components/NavLinks" const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }) const crimsonPro = Crimson_Pro({ subsets: ["latin"], variable: "--font-display" }) const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono", }) export const metadata: Metadata = { metadataBase: new URL("https://pixelrag.ai"), title: { default: "PixelRAG — visual Wikipedia search", template: "%s · PixelRAG", }, description: "Search Wikipedia by how it looks, not just the text it contains. PixelRAG renders pages as screenshots and retrieves over the images.", } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (