diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5644ad3..44708cf 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -80,7 +80,7 @@ export default function AboutPage() { title="Über Galabau Mehl" description="15 Jahre Erfahrung in professionellem Garten- und Landschaftsbau. Wir verwandeln Gärten mit Leidenschaft, Fachkompetenz und höchster Qualität." tag="Unser Unternehmen" - imageSrc="http://img.b2bpic.net/free-photo/man-collects-leaves-cleans-park_1157-27409.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-collects-leaves-cleans-park_1157-27409.jpg?_wi=3" imageAlt="Professional landscaping work" showBlur={true} showDimOverlay={true} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..4f798fa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,58 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Galabau Mehl - Gartenbau & Landschaftsbau Löhne", + description: "Professioneller Garten- und Landschaftsbau in Löhne. Terrassenbau, Pflasterarbeiten, Gartengestaltung, Rollrasen. Kostenlose Beratung. Tel: 05732 9994678", + keywords: "Gartenbau Löhne, Landschaftsbau, Pflasterarbeiten, Gartengestaltung, Terrassenbau, Rollrasen, Bad Oeynhausen, Herford", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Galabau Mehl - Professioneller Garten- und Landschaftsbau", + description: "Wir gestalten Ihren Traumgarten. Kostenlose Beratung für Gartenprojekte in Löhne und Umgebung.", + type: "website", + siteName: "Galabau Mehl", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-cactus-with-blurred-background_23-2148249096.jpg", + alt: "Beautiful garden landscape design", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Galabau Mehl - Gartenbau & Landschaftsbau", + description: "Professioneller Garten- und Landschaftsbau in Löhne. Jetzt kostenloses Angebot anfragen!", + images: [ + "http://img.b2bpic.net/free-photo/close-up-cactus-with-blurred-background_23-2148249096.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +61,9 @@ export default function RootLayout({ return ( - + {children}