This commit is contained in:
2026-04-23 13:24:06 +02:00
parent b5007f2e31
commit 009a1b0b1a
5 changed files with 263 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Navbar from "@/components/navbar";
import Footer from "@/components/footer";
import GravityToggle from "@/components/gravity-toggle";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -98,6 +99,7 @@ export default function RootLayout({
<Navbar />
{children}
<GravityToggle />
<Footer />
</body>
</html>