From 0069de64fa52b7ecb5fb3fb6fbc15e5e14a475f6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:05:29 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1414 +------------------------------------------- 1 file changed, 6 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3fba6b7..5e4bf36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Gebrauchtwagen Salzgitter | Böhmer Automobile", description: "Hochwertige Gebrauchtwagen in Salzgitter mit transparenter Beratung und schneller Abwicklung. BMW, Audi, VW und mehr. 4.7★ Google Bewertung.", keywords: "Gebrauchtwagen Salzgitter, Autohaus Salzgitter, Auto kaufen Salzgitter, Gebrauchtwagen Händler Salzgitter", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Gebrauchtwagen Salzgitter | Böhmer Automobile", description: "Hochwertige Gebrauchtwagen mit transparenter Beratung. Vertrauenswürdiger Autohändler in Salzgitter.", url: "https://böhmer-automobile.de", siteName: "Böhmer Automobile", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18967.jpg", alt: "Böhmer Automobile Ausstellungsraum"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Gebrauchtwagen Salzgitter | Böhmer Automobile", description: "Hochwertige Gebrauchtwagen mit transparenter Beratung und schneller Abwicklung.", images: ["http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18967.jpg"], - }, -}; + title: "Böhmer Automobile – Gebrauchtwagen in Salzgitter", description: "Hochwertige Gebrauchtwagen mit transparenter Beratung und schneller Abwicklung in Salzgitter. Vertrauenswürdiger Autohändler mit 4.7★ Bewertung."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -