From a5d6b732dc0ae026a539ddd40eafa6bfb7a96157 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 05:10:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1444 +------------------------------------------- 1 file changed, 16 insertions(+), 1428 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 69ef6e5..9eec3fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Poppins, Playfair_Display } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["400", "500", "600", "700"], + display: "swap"}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); +const playfair = Playfair_Display({ + variable: "--font-playfair", subsets: ["latin"], + weight: ["400", "500", "600", "700"], + display: "swap"}); export const metadata: Metadata = { - title: "Golfclub Südeifel | Premium Golf in Baustert", - description: "Golf erleben in der Südeifel – 9-Loch Platz, Bistro, Turniere und Events in Baustert bei Bitburg. Anfängerfreundlich und elegant.", - keywords: "Golf Südeifel, Golfplatz Baustert, Golf Bitburg, 9-Loch Golf, Golf Events, Golfclub Südeifel, Golf Academy, Premium Golf Club", - metadataBase: new URL("https://golfclub-sudeifel.de"), - alternates: { - canonical: "https://golfclub-sudeifel.de", - }, - openGraph: { - title: "Golfclub Südeifel – Premium Golf Destination", - description: "Erleben Sie Golf in der wunderschönen Südeifel-Landschaft. Moderner Golfplatz, exklusives Bistro und einladende Community.", - url: "https://golfclub-sudeifel.de", - siteName: "Golfclub Südeifel", - images: [ - { - url: "http://img.b2bpic.net/free-photo/golfer-taking-clubs-from-bag-golf-cart_171337-6544.jpg", - alt: "Golfclub Südeifel – Premium Fairway", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Golfclub Südeifel – Golf erleben", - description: "Premium Golf in der Südeifel – Platz, Bistro, Events und Community", - images: ["http://img.b2bpic.net/free-photo/golfer-taking-clubs-from-bag-golf-cart_171337-6544.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Golfclub Südeifel", description: "9-Loch Golfplatz in der Südeifel"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -