mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 20:42:02 +00:00
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import "@/styles/globals.css";
|
|
|
|
import { GoogleTagManager } from "@next/third-parties/google";
|
|
import { Metadata, Viewport } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
import { auth } from "@/auth.config";
|
|
import { Toaster } from "@/components/ui";
|
|
import { fontSans } from "@/config/fonts";
|
|
import { siteConfig } from "@/config/site";
|
|
import { cn } from "@/lib";
|
|
|
|
import { Providers } from "../providers";
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
default: siteConfig.name,
|
|
template: `%s - ${siteConfig.name}`,
|
|
},
|
|
description: siteConfig.description,
|
|
icons: {
|
|
icon: "/favicon.ico",
|
|
},
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: [
|
|
{ media: "(prefers-color-scheme: light)", color: "white" },
|
|
{ media: "(prefers-color-scheme: dark)", color: "black" },
|
|
],
|
|
};
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const session = await auth();
|
|
|
|
if (session?.user) {
|
|
redirect("/");
|
|
}
|
|
|
|
return (
|
|
<html suppressHydrationWarning lang="en">
|
|
<head />
|
|
<body
|
|
suppressHydrationWarning
|
|
className={cn(
|
|
"min-h-screen bg-background font-sans antialiased",
|
|
fontSans.variable,
|
|
)}
|
|
>
|
|
<Providers themeProps={{ attribute: "class", defaultTheme: "dark" }}>
|
|
{children}
|
|
<Toaster />
|
|
<GoogleTagManager
|
|
gtmId={process.env.NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID || ""}
|
|
/>
|
|
</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|