import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ThemeProvider } from "@/components/theme-provider"; import { SidebarProvider } from "@/components/ui/sidebar"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter", }); export const metadata: Metadata = { title: "Dashboard - shadcn/ui", description: "Modern dashboard built with Next.js and shadcn/ui", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (