import type { Metadata } from "next"; import { ThemeProvider } from "@/app/components/theme-provider"; import "./globals.css"; import { jetbrainsMono } from "@/app/common/font/font"; export const metadata: Metadata = { title: "Paste", description: "Simple Pastebin", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (