import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ThemeProvider } from "@/components/theme-provider"; import { AppNavigation } from "@/components/navigation/app-navigation"; import { Toaster } from "sonner"; // TEMPORARY: AuthProvider disabled for private site access // import { AuthProvider } from "@/components/auth/auth-provider"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Pulse - PSA Management System", description: "Modern dashboard for Autotask PSA integration with RMM and NMS mapping", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {/* TEMPORARY: AuthProvider removed - TODO: Re-enable when site has public access */}
{children}
); }