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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -1 +1,3 @@
@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@700&display=swap');
@import "tailwindcss";

View File

@@ -4,7 +4,7 @@ import Header from '../../components/layout/Header';
export default function ImpressumPage() {
return (
<>
<Header />
{/* <Header /> */}
<div className="container mx-auto px-4 py-8">
<h1 className="text-3xl font-bold mb-6">Impressum</h1>

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>
);

View File

@@ -1,6 +1,3 @@
import Header from '@/components/layout/Header';
import Footer from '@/components/layout/Footer';
import CookieBanner from '@/components/CookieBanner';
import Hero from '@/components/sections/Hero';
import Program from '@/components/sections/Program';
import Info from '@/components/sections/Info';
@@ -9,15 +6,12 @@ import Contact from '@/components/sections/Contact';
export default function Home() {
return (
<>
<Header />
<main>
<Hero />
<Program />
<Info />
<Contact />
</main>
<Footer />
<CookieBanner />
</>
);
}