Merge version_2_1781598188008 into main #1
@@ -1,5 +1,5 @@
|
||||
import FooterBasic from '@/components/sections/footer/FooterBasic';
|
||||
import NavbarDropdown from '@/components/ui/NavbarDropdown';
|
||||
import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
|
||||
import { Outlet } from 'react-router-dom';
|
||||
@@ -41,8 +41,9 @@ export default function Layout() {
|
||||
<StyleProvider buttonVariant="magnetic" siteBackground="gridDots" heroBackground="lightRaysCenter">
|
||||
<SiteBackgroundSlot />
|
||||
<SectionErrorBoundary name="navbar">
|
||||
<NavbarDropdown
|
||||
<NavbarFloatingLogo
|
||||
logo="Partners Lift"
|
||||
logoImageSrc="https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=800&q=80"
|
||||
ctaButton={{
|
||||
text: "Zadzwoń teraz",
|
||||
href: "tel:+48123456789",
|
||||
|
||||
@@ -5,15 +5,15 @@
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #f5faff;
|
||||
--card: #ffffff;
|
||||
--foreground: #001122;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #f5faff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #001122;
|
||||
--accent: #a8cce8;
|
||||
--background-accent: #7ba3cf;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #1a1a1a;
|
||||
--primary-cta: #ff6f00;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #2c3e50;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #ff8f00;
|
||||
--background-accent: #e0e0e0;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 1rem;
|
||||
|
||||
@@ -1,296 +1,39 @@
|
||||
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
|
||||
import PricingSplitCards from '@/components/sections/pricing/PricingSplitCards';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import OfertaSection from './HomePage/sections/Oferta';
|
||||
import FeaturesRevealSection from './HomePage/sections/FeaturesReveal';
|
||||
import PricingSection from './HomePage/sections/Pricing';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroSplit
|
||||
tag="Profesjonalny serwis"
|
||||
title="Wynajem podnośników koszowych na Śląsku"
|
||||
description="Zapewniamy niezawodne podnośniki koszowe na aucie dla prac wysokościowych i reklamowych. Szybka obsługa, pełen profesjonalizm."
|
||||
primaryButton={{
|
||||
text: "Zobacz cennik",
|
||||
href: "#pricing",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Skontaktuj się",
|
||||
href: "#contact",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-bowling-greens-suburban-streets-coonabarabran-australia_1308-190387.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutMediaOverlay
|
||||
tag="Nasza firma"
|
||||
title="Partners Lift – Twój partner na wysokości"
|
||||
description="Od lat specjalizujemy się w obsłudze prac wysokościowych na terenie Śląska. Nasze doświadczenie w wyklejaniu bilbordów i usługach technicznych gwarantuje bezpieczeństwo i najwyższą jakość."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-male-builder-yellow-uniform-helmet-blue-wall_179666-30931.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="oferta" data-section="oferta">
|
||||
<SectionErrorBoundary name="oferta">
|
||||
<FeaturesMediaCarousel
|
||||
tag="Nasze usługi"
|
||||
title="Zakres działań Partners Lift"
|
||||
description="Obsługujemy szeroki wachlarz zleceń wymagających dostępu do dużych wysokości."
|
||||
items={[
|
||||
{
|
||||
title: "Wynajem podnośników",
|
||||
description: "Szeroki wybór podnośników koszowych na aucie.",
|
||||
buttonIcon: "Truck",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-nacelle_268835-3277.jpg",
|
||||
},
|
||||
{
|
||||
title: "Wyklejanie bilbordów",
|
||||
description: "Precyzyjne wyklejanie reklam wielkoformatowych.",
|
||||
buttonIcon: "StickyNote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-board_1098-2614.jpg",
|
||||
},
|
||||
{
|
||||
title: "Prace konserwacyjne",
|
||||
description: "Mycie okien, prace elewacyjne, instalacje.",
|
||||
buttonIcon: "Wrench",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-steel-hammer-with-other-construction-elements-tools_23-2150576452.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<OfertaSection />
|
||||
|
||||
<div id="features-reveal" data-section="features-reveal">
|
||||
<SectionErrorBoundary name="features-reveal">
|
||||
<FeaturesRevealCardsBento
|
||||
tag="Dlaczego my?"
|
||||
title="Standardy Partners Lift"
|
||||
description="Nasza flota i doświadczenie pozwalają na bezpieczną realizację nawet najtrudniejszych zadań."
|
||||
items={[
|
||||
{
|
||||
title: "Certyfikowana flota",
|
||||
description: "Wszystkie urządzenia posiadają aktualne badania UDT.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-female-driver-operating-forklift-vehicle_23-2150248799.jpg",
|
||||
},
|
||||
{
|
||||
title: "Wyszkoleni operatorzy",
|
||||
description: "Nasi pracownicy mają wieloletnie doświadczenie.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-pointing-blank-paper-sheet_23-2148447907.jpg",
|
||||
},
|
||||
{
|
||||
title: "Szybki czas reakcji",
|
||||
description: "Jesteśmy dostępni na terenie całego Śląska.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-business-buildings_1359-1058.jpg",
|
||||
},
|
||||
{
|
||||
title: "Bezpieczeństwo",
|
||||
description: "Stawiamy na najwyższe standardy BHP.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22898.jpg",
|
||||
},
|
||||
{
|
||||
title: "Konkurencyjne ceny",
|
||||
description: "Dostosowane do budżetu klienta.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blonde-activist-environment-holding-empty-whiteboard_329181-9733.jpg",
|
||||
},
|
||||
{
|
||||
title: "Profesjonalizm",
|
||||
description: "Terminowość to nasz priorytet.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530692.jpg",
|
||||
},
|
||||
{
|
||||
title: "Obsługa 24/7",
|
||||
description: "Działamy zawsze, gdy nas potrzebujesz.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-lifting-hook-industrial-warehouse_268835-4094.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesRevealSection />
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingSplitCards
|
||||
tag="Cennik"
|
||||
title="Proste zasady współpracy"
|
||||
description="Elastyczne pakiety wynajmu podnośników koszowych."
|
||||
plans={[
|
||||
{
|
||||
tag: "Najpopularniejszy",
|
||||
price: "150 PLN/h",
|
||||
period: "netto",
|
||||
description: "Idealne dla krótkich zleceń montażowych.",
|
||||
primaryButton: {
|
||||
text: "Zamów usługę",
|
||||
href: "#contact",
|
||||
},
|
||||
featuresTitle: "Obejmuje:",
|
||||
features: [
|
||||
"Operator w cenie",
|
||||
"Paliwo",
|
||||
"Dojazd na Śląsku",
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "Dniowy",
|
||||
price: "1000 PLN",
|
||||
period: "netto",
|
||||
description: "Wynajem całodniowy dla większych projektów.",
|
||||
primaryButton: {
|
||||
text: "Zamów usługę",
|
||||
href: "#contact",
|
||||
},
|
||||
featuresTitle: "Wszystko z pakietu wyżej plus:",
|
||||
features: [
|
||||
"Rabat przy długim wynajmie",
|
||||
"Priorytetowa obsługa",
|
||||
"Wsparcie techniczne",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<PricingSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsFeatureCards
|
||||
tag="Liczby mówią same za siebie"
|
||||
title="Doświadczenie Partners Lift"
|
||||
description="Nasza praca przekłada się na konkretne osiągnięcia dla Twojego biznesu."
|
||||
metrics={[
|
||||
{
|
||||
value: "500+",
|
||||
title: "Zrealizowanych zleceń",
|
||||
features: [
|
||||
"Bezpiecznie",
|
||||
"Na czas",
|
||||
"Dokładnie",
|
||||
],
|
||||
},
|
||||
{
|
||||
value: "15+",
|
||||
title: "Lata doświadczenia",
|
||||
features: [
|
||||
"Ekspertyza",
|
||||
"Jakość",
|
||||
"Zaufanie",
|
||||
],
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
title: "Zadowolonych klientów",
|
||||
features: [
|
||||
"Referencje",
|
||||
"Długofalowa współpraca",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Opinie klientów"
|
||||
title="Dlaczego nam ufają?"
|
||||
description="Współpracujemy z największymi firmami reklamowymi na Śląsku."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Tomasz Kowalski",
|
||||
role: "Dyrektor Agencji",
|
||||
quote: "Pełen profesjonalizm i świetny kontakt. Polecam!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg",
|
||||
},
|
||||
{
|
||||
name: "Anna Nowak",
|
||||
role: "Właścicielka firmy",
|
||||
quote: "Najlepsze podnośniki na Śląsku, wszystko na czas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-old-man-with-helmet-showing-approval_23-2148269393.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marek Wiśniewski",
|
||||
role: "Kierownik Budowy",
|
||||
quote: "Szybka reakcja, profesjonalna ekipa. Korzystamy regularnie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-worker-photovoltaics-factory-closing-deal_482257-125141.jpg",
|
||||
},
|
||||
{
|
||||
name: "Katarzyna Wójcik",
|
||||
role: "Dyrektor Marketingu",
|
||||
quote: "Wyklejanie bilbordów na najwyższym poziomie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-work_23-2149097924.jpg",
|
||||
},
|
||||
{
|
||||
name: "Piotr Zieliński",
|
||||
role: "Kierownik Projektu",
|
||||
quote: "Solidna firma, godna polecenia każdemu.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-carpenter-having-video-call-from-his-workshop-coronavirus-pandemic_637285-11705.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Pomoc"
|
||||
title="Najczęściej zadawane pytania"
|
||||
description="Sprawdź najważniejsze informacje dotyczące wynajmu."
|
||||
items={[
|
||||
{
|
||||
question: "Czy dojeżdżacie poza Śląsk?",
|
||||
answer: "Tak, obsługujemy również sąsiednie województwa po wcześniejszym uzgodnieniu.",
|
||||
},
|
||||
{
|
||||
question: "Czy muszę posiadać uprawnienia do obsługi?",
|
||||
answer: "Nie, wynajem zawsze obejmuje naszego wykwalifikowanego operatora.",
|
||||
},
|
||||
{
|
||||
question: "Jak szybko możecie dojechać na zlecenie?",
|
||||
answer: "W sytuacjach awaryjnych jesteśmy w stanie dojechać nawet w kilka godzin.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22883.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Kontakt"
|
||||
text="Potrzebujesz wsparcia na wysokości? Skontaktuj się z nami już dziś!"
|
||||
primaryButton={{
|
||||
text: "Zadzwoń: +48 123 456 789",
|
||||
href: "tel:+48123456789",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Napisz email",
|
||||
href: "mailto:biuro@partnerslift.pl",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
21
src/pages/HomePage/sections/About.tsx
Normal file
21
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutMediaOverlay
|
||||
tag="Nasza firma"
|
||||
title="Partners Lift – Twój partner na wysokości"
|
||||
description="Od lat specjalizujemy się w obsłudze prac wysokościowych na terenie Śląska. Nasze doświadczenie w wyklejaniu bilbordów i usługach technicznych gwarantuje bezpieczeństwo i najwyższą jakość."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-male-builder-yellow-uniform-helmet-blue-wall_179666-30931.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Kontakt"
|
||||
text="Potrzebujesz wsparcia na wysokości? Skontaktuj się z nami już dziś!"
|
||||
primaryButton={{
|
||||
text: "Zadzwoń: +48 123 456 789",
|
||||
href: "tel:+48123456789",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Napisz email",
|
||||
href: "mailto:biuro@partnerslift.pl",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
35
src/pages/HomePage/sections/Faq.tsx
Normal file
35
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Pomoc"
|
||||
title="Najczęściej zadawane pytania"
|
||||
description="Sprawdź najważniejsze informacje dotyczące wynajmu."
|
||||
items={[
|
||||
{
|
||||
question: "Czy dojeżdżacie poza Śląsk?",
|
||||
answer: "Tak, obsługujemy również sąsiednie województwa po wcześniejszym uzgodnieniu.",
|
||||
},
|
||||
{
|
||||
question: "Czy muszę posiadać uprawnienia do obsługi?",
|
||||
answer: "Nie, wynajem zawsze obejmuje naszego wykwalifikowanego operatora.",
|
||||
},
|
||||
{
|
||||
question: "Jak szybko możecie dojechać na zlecenie?",
|
||||
answer: "W sytuacjach awaryjnych jesteśmy w stanie dojechać nawet w kilka godzin.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22883.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
64
src/pages/HomePage/sections/FeaturesReveal.tsx
Normal file
64
src/pages/HomePage/sections/FeaturesReveal.tsx
Normal file
@@ -0,0 +1,64 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features-reveal" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesRevealSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features-reveal" data-section="features-reveal">
|
||||
<SectionErrorBoundary name="features-reveal">
|
||||
<FeaturesRevealCardsBento
|
||||
tag="Dlaczego my?"
|
||||
title="Standardy Partners Lift"
|
||||
description="Nasza flota i doświadczenie pozwalają na bezpieczną realizację nawet najtrudniejszych zadań."
|
||||
items={[
|
||||
{
|
||||
title: "Certyfikowana flota",
|
||||
description: "Wszystkie urządzenia posiadają aktualne badania UDT.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-female-driver-operating-forklift-vehicle_23-2150248799.jpg",
|
||||
},
|
||||
{
|
||||
title: "Wyszkoleni operatorzy",
|
||||
description: "Nasi pracownicy mają wieloletnie doświadczenie.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-pointing-blank-paper-sheet_23-2148447907.jpg",
|
||||
},
|
||||
{
|
||||
title: "Szybki czas reakcji",
|
||||
description: "Jesteśmy dostępni na terenie całego Śląska.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-business-buildings_1359-1058.jpg",
|
||||
},
|
||||
{
|
||||
title: "Bezpieczeństwo",
|
||||
description: "Stawiamy na najwyższe standardy BHP.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22898.jpg",
|
||||
},
|
||||
{
|
||||
title: "Konkurencyjne ceny",
|
||||
description: "Dostosowane do budżetu klienta.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blonde-activist-environment-holding-empty-whiteboard_329181-9733.jpg",
|
||||
},
|
||||
{
|
||||
title: "Profesjonalizm",
|
||||
description: "Terminowość to nasz priorytet.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530692.jpg",
|
||||
},
|
||||
{
|
||||
title: "Obsługa 24/7",
|
||||
description: "Działamy zawsze, gdy nas potrzebujesz.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-lifting-hook-industrial-warehouse_268835-4094.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
29
src/pages/HomePage/sections/Hero.tsx
Normal file
29
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroSplit
|
||||
tag="Profesjonalny serwis"
|
||||
title="Wynajem podnośników koszowych na Śląsku"
|
||||
description="Zapewniamy niezawodne podnośniki koszowe na aucie dla prac wysokościowych i reklamowych. Szybka obsługa, pełen profesjonalizm."
|
||||
primaryButton={{
|
||||
text: "Zobacz cennik",
|
||||
href: "#pricing",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Skontaktuj się",
|
||||
href: "#contact",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-bowling-greens-suburban-streets-coonabarabran-australia_1308-190387.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
48
src/pages/HomePage/sections/Metrics.tsx
Normal file
48
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsFeatureCards
|
||||
tag="Liczby mówią same za siebie"
|
||||
title="Doświadczenie Partners Lift"
|
||||
description="Nasza praca przekłada się na konkretne osiągnięcia dla Twojego biznesu."
|
||||
metrics={[
|
||||
{
|
||||
value: "500+",
|
||||
title: "Zrealizowanych zleceń",
|
||||
features: [
|
||||
"Bezpiecznie",
|
||||
"Na czas",
|
||||
"Dokładnie",
|
||||
],
|
||||
},
|
||||
{
|
||||
value: "15+",
|
||||
title: "Lata doświadczenia",
|
||||
features: [
|
||||
"Ekspertyza",
|
||||
"Jakość",
|
||||
"Zaufanie",
|
||||
],
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
title: "Zadowolonych klientów",
|
||||
features: [
|
||||
"Referencje",
|
||||
"Długofalowa współpraca",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
40
src/pages/HomePage/sections/Oferta.tsx
Normal file
40
src/pages/HomePage/sections/Oferta.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "oferta" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function OfertaSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="oferta" data-section="oferta">
|
||||
<SectionErrorBoundary name="oferta">
|
||||
<FeaturesMediaCarousel
|
||||
tag="Nasze usługi"
|
||||
title="Zakres działań Partners Lift"
|
||||
description="Obsługujemy szeroki wachlarz zleceń wymagających dostępu do dużych wysokości."
|
||||
items={[
|
||||
{
|
||||
title: "Wynajem podnośników",
|
||||
description: "Szeroki wybór podnośników koszowych na aucie.",
|
||||
buttonIcon: "Truck",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-nacelle_268835-3277.jpg",
|
||||
},
|
||||
{
|
||||
title: "Wyklejanie bilbordów",
|
||||
description: "Precyzyjne wyklejanie reklam wielkoformatowych.",
|
||||
buttonIcon: "StickyNote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-empty-board_1098-2614.jpg",
|
||||
},
|
||||
{
|
||||
title: "Prace konserwacyjne",
|
||||
description: "Mycie okien, prace elewacyjne, instalacje.",
|
||||
buttonIcon: "Wrench",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-steel-hammer-with-other-construction-elements-tools_23-2150576452.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
54
src/pages/HomePage/sections/Pricing.tsx
Normal file
54
src/pages/HomePage/sections/Pricing.tsx
Normal file
@@ -0,0 +1,54 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "pricing" section.
|
||||
|
||||
import React from 'react';
|
||||
import PricingSplitCards from '@/components/sections/pricing/PricingSplitCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function PricingSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="pricing" data-section="pricing">
|
||||
<SectionErrorBoundary name="pricing">
|
||||
<PricingSplitCards
|
||||
tag="Cennik"
|
||||
title="Proste zasady współpracy"
|
||||
description="Elastyczne pakiety wynajmu podnośników koszowych."
|
||||
plans={[
|
||||
{
|
||||
tag: "Najpopularniejszy",
|
||||
price: "150 PLN/h",
|
||||
period: "netto",
|
||||
description: "Idealne dla krótkich zleceń montażowych.",
|
||||
primaryButton: {
|
||||
text: "Zamów usługę",
|
||||
href: "#contact",
|
||||
},
|
||||
featuresTitle: "Obejmuje:",
|
||||
features: [
|
||||
"Operator w cenie",
|
||||
"Paliwo",
|
||||
"Dojazd na Śląsku",
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "Dniowy",
|
||||
price: "1000 PLN",
|
||||
period: "netto",
|
||||
description: "Wynajem całodniowy dla większych projektów.",
|
||||
primaryButton: {
|
||||
text: "Zamów usługę",
|
||||
href: "#contact",
|
||||
},
|
||||
featuresTitle: "Wszystko z pakietu wyżej plus:",
|
||||
features: [
|
||||
"Rabat przy długim wynajmie",
|
||||
"Priorytetowa obsługa",
|
||||
"Wsparcie techniczne",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Opinie klientów"
|
||||
title="Dlaczego nam ufają?"
|
||||
description="Współpracujemy z największymi firmami reklamowymi na Śląsku."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Tomasz Kowalski",
|
||||
role: "Dyrektor Agencji",
|
||||
quote: "Pełen profesjonalizm i świetny kontakt. Polecam!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg",
|
||||
},
|
||||
{
|
||||
name: "Anna Nowak",
|
||||
role: "Właścicielka firmy",
|
||||
quote: "Najlepsze podnośniki na Śląsku, wszystko na czas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-old-man-with-helmet-showing-approval_23-2148269393.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marek Wiśniewski",
|
||||
role: "Kierownik Budowy",
|
||||
quote: "Szybka reakcja, profesjonalna ekipa. Korzystamy regularnie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-worker-photovoltaics-factory-closing-deal_482257-125141.jpg",
|
||||
},
|
||||
{
|
||||
name: "Katarzyna Wójcik",
|
||||
role: "Dyrektor Marketingu",
|
||||
quote: "Wyklejanie bilbordów na najwyższym poziomie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-work_23-2149097924.jpg",
|
||||
},
|
||||
{
|
||||
name: "Piotr Zieliński",
|
||||
role: "Kierownik Projektu",
|
||||
quote: "Solidna firma, godna polecenia każdemu.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-carpenter-having-video-call-from-his-workshop-coronavirus-pandemic_637285-11705.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user