Theme Stuff Initials

This commit is contained in:
Sir Blob
2025-01-25 01:17:28 -05:00
parent 2d722551f5
commit 2397b43d2b
9 changed files with 1286 additions and 132 deletions

View File

@@ -3,36 +3,47 @@ import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";
// import { ThemeProvider } from "@/components/theme-provider";
// import { NavigationMenuDemo } from "@/components/navbar";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<Analytics />
<SpeedInsights />
{children}
</body>
</html>
);
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{/* <ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
></ThemeProvider> */}
<Analytics />
<SpeedInsights />
{/* <NavigationMenuDemo /> */}
{children}
</body>
</html>
);
}