- Added Wulff logo (W_RGB.png) to public directory - Updated favicon to use Wulff logo - Added logo to upper right of navigation bar (h-10) - Logo appears next to theme toggle - Links to home page when clicked
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
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",
|
|
icons: {
|
|
icon: "/wulff-logo.png",
|
|
shortcut: "/wulff-logo.png",
|
|
apple: "/wulff-logo.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className={inter.className}>
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
>
|
|
{/* TEMPORARY: AuthProvider removed - TODO: Re-enable when site has public access */}
|
|
<div className="min-h-screen bg-background">
|
|
<AppNavigation />
|
|
<main>{children}</main>
|
|
</div>
|
|
<Toaster position="top-right" richColors />
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|