import type { Metadata } from "next"; import { Sora, IBM_Plex_Mono } from "next/font/google"; import { ThemeProvider } from "@/components/theme-provider"; import "./globals.css"; const sora = Sora({ variable: "--font-sans", subsets: ["latin"], }); const ibmPlexMono = IBM_Plex_Mono({ variable: "--font-mono", weight: ["400", "500", "600", "700"], subsets: ["latin"], }); export const metadata: Metadata = { title: "Dashboard App Template", description: "A Next.js dashboard template with shadcn/ui", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (