Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -63,23 +63,23 @@ export default function HomePage() {
|
||||
]}
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Instalacja systemu wodno-kanalizacyjnego",
|
||||
},
|
||||
]}
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
content: "Kolektory słoneczne i zasobniki solarne zmniejszające koszty ogrzewania wody nawet o 60%. Dobór, montaż i konfiguracja instalacji solarnych wspierających centralne ogrzewanie.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797683.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797683.jpg?_wi=1"
|
||||
imageAlt="Nowoczesne biuro i serwis PIO-HYDROP"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -178,7 +178,7 @@ export default function HomePage() {
|
||||
quote: "Firma PIO-HYDROP wykonała u nas kompletną wymianę systemu grzewczego. Pracownicy byli bardzo profesjonalni, punktualni i schludni. System działa idealnie.",
|
||||
name: "Jan Kowalski",
|
||||
role: "Właściciel domu jednorodzinnego",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -186,7 +186,7 @@ export default function HomePage() {
|
||||
quote: "Awaria kotła w najgorszym możliwym momencie. PIO-HYDROP zjawił się tego samego dnia i zdiagnozował problem. Naprawę wykonali wzorowo.",
|
||||
name: "Maria Lewandowska",
|
||||
role: "Właścicielka siedliska",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -194,7 +194,7 @@ export default function HomePage() {
|
||||
quote: "Inwestycja w kolektory słoneczne to najlepsze rozwiązanie. Zespół PIO-HYDROP wszystko wyjaśnił, dobrze zmontował i podpowiedział, jak oszczędzać energię.",
|
||||
name: "Tomasz Nowak",
|
||||
role: "Właściciel budynku wielorodzinnego",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -202,7 +202,7 @@ export default function HomePage() {
|
||||
quote: "Stary system wodno-kanalizacyjny wymagał kompleksowego remontu. PIO-HYDROP zaproponował najlepsze rozwiązania i zrealizował je bez dodatkowych kosztów.",
|
||||
name: "Anna Szymańska",
|
||||
role: "Właścicielka domu w Mińsku Mazowieckim",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -210,7 +210,7 @@ export default function HomePage() {
|
||||
quote: "Współpracujemy z PIO-HYDROP od wielu lat. Są zawsze punktualni, profesjonalni i gotowi do wyzwań. Polecam ich każdemu.",
|
||||
name: "Krzysztof Piotrowski",
|
||||
role: "Kierownik budowy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
quote: "Po instalacji kotła gazowego PIO-HYDROP regularnie pielęgnuje nasz system. Zawsze na czas, zawsze profesjonalnie. Mamy pełen spokój.",
|
||||
name: "Zofia Grabowska",
|
||||
role: "Właścicielka mieszkania",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=6",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -77,7 +77,7 @@ export default function ServicePage() {
|
||||
imageAlt: "Konserwacja systemów odnawialnych",
|
||||
},
|
||||
{
|
||||
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=2",
|
||||
imageAlt: "Przegląd i regulacja systemów",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -55,23 +55,23 @@ export default function ServicesPage() {
|
||||
]}
|
||||
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=3",
|
||||
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=2",
|
||||
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=2",
|
||||
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=2",
|
||||
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=2",
|
||||
imageAlt: "Instalacja systemu wodno-kanalizacyjnego",
|
||||
},
|
||||
]}
|
||||
@@ -107,7 +107,7 @@ export default function ServicesPage() {
|
||||
content: "Kolektory słoneczne i zasobniki solarne zmniejszające koszty ogrzewania wody nawet o 60%. Dobór, montaż i konfiguracja instalacji solarnych wspierających centralne ogrzewanie.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797683.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797683.jpg?_wi=2"
|
||||
imageAlt="Nowoczesne biuro i serwis PIO-HYDROP"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user