import type { Metadata } from "next"; import { Bricolage_Grotesque, IBM_Plex_Mono, IBM_Plex_Sans, } from "next/font/google"; import { ThemeProvider } from "next-themes"; import { TooltipProvider } from "@/components/ui/tooltip"; import { Toaster } from "@/components/ui/sonner"; import "./globals.css"; // Display face for page titles and card headings (wired via --font-heading in globals.css) - used // with restraint, never for body copy. Body/UI text and technical data (run IDs, commands, // timestamps) share the IBM Plex family so the two registers still read as one system. const displayFont = Bricolage_Grotesque({ variable: "--font-display", subsets: ["latin"], }); const sansFont = IBM_Plex_Sans({ variable: "--font-sans", subsets: ["latin"], weight: ["400", "500", "600", "700"], }); const monoFont = IBM_Plex_Mono({ variable: "--font-mono", subsets: ["latin"], weight: ["400", "500", "600"], }); export const metadata: Metadata = { title: { default: "TriggerShell", template: "%s ยท TriggerShell", }, description: "Run configured shell scripts from a web UI.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }