From fff6523b259ce47f2483bd8763f00da18f5f324c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:43:30 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..6e239c9 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 { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,38 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "MESTERHIG - Professional Cleaning Services Pécs Hungary", + description: "Professional cleaning services for residential, commercial, industrial, and healthcare facilities in Pécs and Baranya. 5-star rated. Free quote.", + keywords: "takarítás Pécs, professzionális takarítás, ablak tisztítás, szőnyeg tisztítás, iroda takarítás, ózonos fertőtlenítés, napelem tisztítás", + metadataBase: new URL("https://mesterhig.hu"), + alternates: { + canonical: "https://mesterhig.hu", + }, + openGraph: { + title: "MESTERHIG - Professional Cleaning Services in Pécs", + description: "Reliable cleaning solutions for homes, offices, industrial facilities, and healthcare institutions. 5-star rated service.", + type: "website", + siteName: "MESTERHIG", + images: [ + { + url: "https://mesterhig.hu/og-image.jpg", + alt: "MESTERHIG Professional Cleaning Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "MESTERHIG - Professional Cleaning Services Pécs", + description: "Premium cleaning solutions for all sectors. Trusted by 150+ clients.", + images: ["https://mesterhig.hu/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +64,9 @@ export default function RootLayout({ return ( - + {children}