diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5487a73..686cbef 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -122,37 +122,37 @@ export default function AboutPage() { { id: "1", name: "Judit Szabó", - imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg?_wi=2", imageAlt: "Judit Szabó, satisfied client", }, { id: "2", name: "László Nagy", - imageSrc: "http://img.b2bpic.net/free-vector/professional-join-team-linkedin-profile-picture_742173-11941.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/professional-join-team-linkedin-profile-picture_742173-11941.jpg?_wi=2", imageAlt: "László Nagy, business owner", }, { id: "3", name: "Márta Kovács", - imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-keeping-hands-hips-outdoors_1262-20194.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-keeping-hands-hips-outdoors_1262-20194.jpg?_wi=2", imageAlt: "Márta Kovács, corporate manager", }, { id: "4", name: "Péter Fekete", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-business-lady-showing-thumb-up_1262-2980.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-business-lady-showing-thumb-up_1262-2980.jpg?_wi=2", imageAlt: "Péter Fekete, facility director", }, { id: "5", name: "Éva Molnár", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280701.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280701.jpg?_wi=2", imageAlt: "Éva Molnár, healthcare administrator", }, { id: "6", name: "Tamás Horváth", - imageSrc: "http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg?_wi=2", imageAlt: "Tamás Horváth, industry manager", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ab94464..42f0af1 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -42,7 +42,7 @@ export default function ContactPage() { variant: "sparkles-gradient", }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167359.jpg" + imageSrc="http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167359.jpg?_wi=2" mediaAnimation="blur-reveal" mediaPosition="right" inputPlaceholder="Your email address" 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}