import type { Metadata } from "next" import { Inter } from "next/font/google" import { ThemeProvider } from "@/providers/theme-provider" import { Toaster } from "@/components/ui/sonner" import "./globals.css" const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }) export const metadata: Metadata = { title: "Coast IT - CRM", description: "Customer Relationship Management System", icons: { icon: "/logo/CompanyMiniLogo.png", }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }