diff --git a/src/app/kontakt/page.tsx b/src/app/kontakt/page.tsx index da54ec1..ed26233 100644 --- a/src/app/kontakt/page.tsx +++ b/src/app/kontakt/page.tsx @@ -80,7 +80,7 @@ export default function ContactPage() { handle: "Bauunternehmen Müller", testimonial: "Die Arbeit wird hier zügig und genau erledigt. Wir bringen alle unsere Fahrzeuge hierher.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-with-arms-crossed_1098-58.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-with-arms-crossed_1098-58.jpg?_wi=3", imageAlt: "Hans Müller", }, { @@ -89,7 +89,7 @@ export default function ContactPage() { handle: "Landwirtschaftsbetrieb Lehmann", testimonial: "Top Beratung und Abwicklung der Reparaturen. Schnell, kompetent und freundlich.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-greenhouse-worker-working-greenhouse-while-agricultural-engineers-are-using-laptop-see-delivery-status-caucasian-woman-hydroponic-enviroment-with-salad-crates_482257-50578.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-greenhouse-worker-working-greenhouse-while-agricultural-engineers-are-using-laptop-see-delivery-status-caucasian-woman-hydroponic-enviroment-with-salad-crates_482257-50578.jpg?_wi=3", imageAlt: "Frank Lehmann", }, { @@ -98,7 +98,7 @@ export default function ContactPage() { handle: "Schmidt Logistik GmbH", testimonial: "Service, Reparatur und Freundlichkeit des Personals – alles bestens. Sehr empfehlenswert.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-talking-partner_1262-1998.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-talking-partner_1262-1998.jpg?_wi=3", imageAlt: "Klaus Schmidt", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..691e930 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,33 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Unimog Service Lingen - Franke & Twiehaus Mercedes-Benz Werkstatt", + description: "Zuverlässige Unimog und Nutzfahrzeug Reparatur, Wartung und Service in Lingen, Emsland. Professionelle Werkstatt für Unimog, LKW und Transportfahrzeuge.", + keywords: "Unimog Service Lingen, Unimog Werkstatt, Nutzfahrzeug Werkstatt Lingen, LKW Werkstatt Lingen, Mercedes-Benz Unimog Reparatur", + metadataBase: new URL("https://franke-twiehaus.de"), + openGraph: { + title: "Unimog & Nutzfahrzeug Service Lingen", + description: "Professionelle Reparatur und Wartung für Unimog und Nutzfahrzeuge", + siteName: "Franke & Twiehaus", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Unimog Service Lingen", + }, +}; + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( - + - + {children}