2024-06-15 14:55:33 +02:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Poppins } from "next/font/google";
|
|
|
|
import "./globals.css";
|
|
|
|
import { ThemeProvider } from "@/components/shared/providers/themeprovider";
|
|
|
|
|
|
|
|
const poppins = Poppins({
|
2024-06-20 17:37:45 +02:00
|
|
|
weight: ["400", "600", "700", "900"],
|
|
|
|
subsets: ["latin"],
|
2024-06-15 14:55:33 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-06-20 17:37:45 +02:00
|
|
|
title: "SVRJS - A Web Server running on Nodejs",
|
|
|
|
description: "Open Source Software Library",
|
2024-06-15 14:55:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function RootLayout({
|
2024-06-20 17:37:45 +02:00
|
|
|
children,
|
2024-06-15 14:55:33 +02:00
|
|
|
}: Readonly<{
|
2024-06-20 17:37:45 +02:00
|
|
|
children: React.ReactNode;
|
2024-06-15 14:55:33 +02:00
|
|
|
}>) {
|
2024-06-20 17:37:45 +02:00
|
|
|
return (
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
2024-06-20 20:11:35 +02:00
|
|
|
<body className={`antialiased ${poppins.className}`}>
|
2024-06-20 17:37:45 +02:00
|
|
|
<ThemeProvider
|
|
|
|
attribute="class"
|
|
|
|
defaultTheme="dark"
|
|
|
|
enableSystem
|
|
|
|
disableTransitionOnChange
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</ThemeProvider>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
);
|
2024-06-15 14:55:33 +02:00
|
|
|
}
|