From 93cfd83ac51d8a0a3cbeb4f5ebf62130196ffe85 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 19:32:46 +0000 Subject: [PATCH 1/5] Update src/app/kontakt/page.tsx --- src/app/kontakt/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/kontakt/page.tsx b/src/app/kontakt/page.tsx index 06ce65c..677f883 100644 --- a/src/app/kontakt/page.tsx +++ b/src/app/kontakt/page.tsx @@ -49,7 +49,7 @@ export default function ContactPage() { description="Ob Heizungserneuerung, Wärmepumpen-Installation oder Badsanierung – wir freuen uns auf Ihre Anfrage und melden uns innerhalb von 24 Stunden." background={{ variant: "animated-grid" }} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990703.jpg" + imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990703.jpg?_wi=2" imageAlt="Professioneller Techniker beim Kundengespräch" mediaAnimation="slide-up" mediaPosition="left" -- 2.49.1 From 87c55f159a71495ab13004d7c8294028c5bc6708 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 19:32:46 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72092eb..be2ca87 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,15 +24,22 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); +export const metadata: Metadata = { + title: "Heizwerk Schmidt - Heizung & Sanitär München", + description: "Ihr zuverlässiger Partner für Heizung, Wärmepumpen und Sanitär im Raum München. Über 25 Jahre Erfahrung, geschulte Monteure und persönliche Beratung für Ihr Zuhause.", +}; + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( - + - + {children}