From 041695bc567de1c00c69faac8ca0e6414f434aa2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 20:48:34 +0000 Subject: [PATCH 1/5] Update src/app/kontakt/page.tsx --- src/app/kontakt/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/kontakt/page.tsx b/src/app/kontakt/page.tsx index ebd1a52..2735431 100644 --- a/src/app/kontakt/page.tsx +++ b/src/app/kontakt/page.tsx @@ -55,23 +55,23 @@ export default function ContactPage() { ]} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/adjusting-heating-valves-residential-building_169016-53761.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/adjusting-heating-valves-residential-building_169016-53761.jpg?_wi=4", imageAlt: "Profesjonalna instalacja systemu grzewczego", }, { - imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg?_wi=3", imageAlt: "Prace hydrauliczne i montaż rur", }, { - imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29988.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29988.jpg?_wi=3", imageAlt: "Instalacja paneli słonecznych i kolektorów", }, { - imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-checks-electrical-panel-using-tablet-system-control_169016-71246.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-checks-electrical-panel-using-tablet-system-control_169016-71246.jpg?_wi=3", imageAlt: "Montaż instalacji gazowej i kotłów", }, { - imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-small-rural-waterfall-spring-day_181624-24380.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-small-rural-waterfall-spring-day_181624-24380.jpg?_wi=3", imageAlt: "Instalacja systemu wodno-kanalizacyjnego", }, ]} -- 2.49.1 From 00d7e5dc325ace1b7ca73bc8c018ca729212b6fc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 20:48:35 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..23a1a52 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_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 { Public_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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "PIO-HYDROP - Instalacje grzewcze, gazowe i hydrauliczne Mińsk Mazowiecki", + description: "Profesjonalne instalacje grzewcze, gazowe, wodno-kanalizacyjne i odnawialne źródła energii. Autoryzowany partner Bosch Thermotechnika w Mińsku Mazowieckim.", + keywords: "instalacje grzewcze, instalacje gazowe, hydraulika, kolektory słoneczne, Mińsk Mazowiecki, Bosch", + metadataBase: new URL("https://pio-hydrop.pl"), + alternates: { + canonical: "https://pio-hydrop.pl", + }, + openGraph: { + title: "PIO-HYDROP - Profesjonalne instalacje i serwis", + description: "Kompleksowe usługi instalacyjne dla domów i firm", + url: "https://pio-hydrop.pl", + siteName: "PIO-HYDROP", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/adjusting-heating-valves-residential-building_169016-53761.jpg", + alt: "Profesjonalne instalacje grzewcze PIO-HYDROP", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "PIO-HYDROP - Instalacje grzewcze i gazowe", + description: "Serwis, montaż i doradztwo techniczne", + images: [ + "http://img.b2bpic.net/free-photo/adjusting-heating-valves-residential-building_169016-53761.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}