sounds + layout

This commit is contained in:
Stefan
2025-11-24 16:12:58 +01:00
parent 1f2300e476
commit b923f68841
10 changed files with 234 additions and 140 deletions
+3
View File
@@ -2,6 +2,8 @@ import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Footer from "@/components/Footer";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
@@ -28,6 +30,7 @@ export default function RootLayout({
className={`${geistSans.variable} ${geistMono.variable} antialiased flex flex-col min-h-screen`}
>
{children}
<Footer />
</body>
</html>
);