different changes;
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 15 KiB |
@@ -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";
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
@@ -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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user