import type { Metadata } from "next"; import { JetBrains_Mono, Silkscreen } from "next/font/google"; import "./globals.css"; const mono = JetBrains_Mono({ variable: "--font-mono", subsets: ["latin"], }); const pixel = Silkscreen({ variable: "--font-pixel", weight: ["400", "700"], subsets: ["latin"], }); export const metadata: Metadata = { title: "cladm — TUI launcher for Claude Code", description: "Browse all your projects, see git status at a glance, expand into sessions and branches, then launch everything in parallel Terminal windows.", icons: { icon: [ { url: "/favicon.ico", sizes: "32x32" }, { url: "/icon-192.png", sizes: "192x192", type: "image/png" }, { url: "/icon-512.png", sizes: "512x512", type: "image/png" }, ], apple: "/apple-touch-icon.png", }, openGraph: { title: "cladm", description: "TUI launcher for Claude Code sessions", url: "https://claudm.com", siteName: "cladm", type: "website", images: [ { url: "/og-image.png", width: 1200, height: 630, alt: "cladm — TUI launcher for Claude Code sessions", }, ], }, twitter: { card: "summary_large_image", title: "cladm", description: "TUI launcher for Claude Code sessions", images: ["/og-image.png"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }