import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ThemeProvider } from "@/components/theme-provider"; import { Toaster } from "@/components/ui/toaster"; import { cn } from "@/lib/utils"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Dashboard | Skilld Admin", description: "Skilld Admin Dashboard", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (