wulf-pulse/app/layout.tsx

39 lines
1.1 KiB
TypeScript
Raw Normal View History

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";
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 (
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>
<ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
>
<div className="min-h-screen bg-background">
<AppNavigation />
<main>{children}</main>
</div>
<Toaster position="top-right" richColors />
</ThemeProvider>
</body>
</html>
);
}