import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import { Providers } from "@/components/providers"; import "./globals.css"; const geistSans = Geist({ subsets: ["latin"], variable: "--font-geist-sans", display: "swap", }); const geistMono = Geist_Mono({ subsets: ["latin"], variable: "--font-geist-mono", display: "swap", }); export const metadata: Metadata = { title: "Dash", description: "Your services, organized beautifully.", icons: { icon: "/icon.svg" }, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (