different changes;

This commit is contained in:
haidertiz
2025-07-09 13:00:34 +02:00
parent eb0c1ad2bf
commit 89aa678cf8
15 changed files with 294 additions and 22 deletions

View File

@@ -1,6 +1,9 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Header from "@/components/layout/Header";
import Footer from "@/components/layout/Footer";
import CookieBanner from "@/components/CookieBanner";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -13,8 +16,8 @@ const geistMono = Geist_Mono({
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Steinbruchfest 2025",
description: "Steinbruchfest und 150 Jahr-Feier der Freiwillige Feuerwehr Friedberg",
};
export default function RootLayout({
@@ -23,11 +26,14 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="de">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-flyer-yellow overflow-x-hidden`}
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-flyer-yellow`}
>
{children}
<Header />
<main className="">{children}</main>
<Footer />
<CookieBanner />
</body>
</html>
);