This commit is contained in:
2026-04-24 13:11:12 +02:00
parent c34d069d54
commit abb7651e41
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>