mirror of
https://github.com/fccview/cronmaster.git
synced 2025-12-31 09:58:02 -05:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { JetBrains_Mono, Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ThemeProvider } from "./_components/ui/ThemeProvider";
|
|
|
|
const jetbrainsMono = JetBrains_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-mono",
|
|
display: "swap",
|
|
});
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-sans",
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Cr*nMaster - Cron Management made easy",
|
|
description:
|
|
"The ultimate cron job management platform with intelligent scheduling, real-time monitoring, and powerful automation tools",
|
|
icons: {
|
|
icon: "/logo.png",
|
|
shortcut: "/logo.png",
|
|
apple: "/logo.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className={`${inter.variable} ${jetbrainsMono.variable} font-sans`}>
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
>
|
|
{children}
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|