From 6dc7537a9b8a3fc64c38286642c6ccaaf4323384 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:20:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1425 +------------------------------------------- 1 file changed, 7 insertions(+), 1418 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5286895..a13268d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Haustechnik MM - Heizung & Sanitär Dillingen", - description: "Professionelle Haustechnik in Dillingen: Heizung, Sanitär, Wartung & Reparatur. Lokaler Fachbetrieb mit 20+ Jahren Erfahrung. Jetzt anrufen!", - keywords: "Haustechnik Dillingen, Heizungsbauer Dillingen, Sanitär Dillingen, Heizungsreparatur, Badinstallation", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Haustechnik MM - Zuverlässige Heizung & Sanitär", - description: "Ihr lokaler Partner für professionelle Haustechnik-Dienstleistungen in Dillingen a.d. Donau", - url: "https://haustechnik-mm.de", - siteName: "Haustechnik MM", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-view-city-buildings_23-2149071395.jpg", - alt: "Haustechnik MM Heizungssystem", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Haustechnik MM - Heizung & Sanitär Dillingen", - description: "Professionelle Haustechnik-Dienstleistungen in Dillingen a.d. Donau", - images: ["http://img.b2bpic.net/free-photo/beautiful-view-city-buildings_23-2149071395.jpg"], - }, -}; + title: "Haustechnik MM - Heizung und Sanitär in Dillingen", description: "Professionelle Haustechnik, Installation und Reparatur vom Fachbetrieb in Dillingen. Schnell, zuverlässig und mit über 20 Jahren Erfahrung."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -