import type { Metadata } from "next"; import { Geist_Mono, Inter } from "next/font/google"; import "./globals.css"; import { cn } from "@/lib/utils"; import { ThemeProvider } from "@/components/theme-provider"; import { I18nProvider } from "@/components/i18n-provider"; import { ToastProvider } from "@/components/ui/toast"; // COSS font-variable contract: --font-sans, --font-heading, --font-mono. const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }); const interHeading = Inter({ subsets: ["latin"], variable: "--font-heading" }); const geistMono = Geist_Mono({ subsets: ["latin"], variable: "--font-mono" }); export const metadata: Metadata = { title: "temetro — AI assistant for clinicians", description: "Retrieve patient information by simply asking. The open-source AI assistant for clinicians.", // Icons come from the app/icon.png + app/apple-icon.png file conventions. }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {/* suppressHydrationWarning: next-themes sets the theme class on before hydration, and browser extensions (e.g. ColorZilla's cz-shortcut-listen) mutate . Only ignores attribute diffs on those elements, not their children. */} {children} ); }