Home Page Hero

This commit is contained in:
Sir Blob
2025-01-25 03:56:01 -05:00
parent 79a58a53a8
commit 6b38538a16
4 changed files with 51 additions and 53 deletions

View File

@@ -1,6 +1,7 @@
"use client"
import { Navbar } from '@/components/navbar';
import { Footer } from '@/components/footer';
import { ThemeProvider } from '@/components/theme-provider';
import './globals.css'
@@ -16,6 +17,7 @@ export default function RootLayout({
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
<Navbar />
<main suppressHydrationWarning>{children}</main>
<Footer />
</ThemeProvider>
</body>
</html>