mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import type { Metadata, Viewport } from "next"
|
|
import { Inter } from "next/font/google"
|
|
import { ThemeProvider } from "@/providers/theme-provider"
|
|
import { WebsiteThemeProvider } from "@/providers/website-theme-provider"
|
|
import { Toaster } from "@/components/ui/sonner"
|
|
import "./globals.css"
|
|
import "../../Web_Backgrounds/default-theme.css"
|
|
import "../../Web_Backgrounds/spidey-theme.css"
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
})
|
|
|
|
export const viewport: Viewport = {
|
|
width: "device-width",
|
|
initialScale: 1,
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: "CRM",
|
|
description: "Customer Relationship Management System",
|
|
icons: {
|
|
icon: "/logo/CompanyMiniLogo.png",
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className={`${inter.variable} min-h-screen antialiased`}>
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `(function(){try{var t=localStorage.getItem("crm-color-theme");if(t&&t!=="default")document.documentElement.classList.add(t);var w=localStorage.getItem("crm-website-theme");if(w==="spidey")document.documentElement.classList.add("theme-spidey")}catch(e){}})()`,
|
|
}}
|
|
/>
|
|
<ThemeProvider attribute="class" defaultTheme="light" disableTransitionOnChange>
|
|
<WebsiteThemeProvider>
|
|
{children}
|
|
<Toaster />
|
|
</WebsiteThemeProvider>
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|