Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c03af60c7f | |||
| 07f6c6d48e | |||
| ca22795f20 | |||
| e5c0f4e806 | |||
| 0f3dc8c95d | |||
| 12f445d031 | |||
| 8a0bff8b42 |
90
src/app/contact/page.tsx
Normal file
90
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="mediumLarge"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{
|
||||||
|
name: "Start", id: "/"},
|
||||||
|
{
|
||||||
|
name: "Oferta", id: "/#services"},
|
||||||
|
{
|
||||||
|
name: "Dlaczego my", id: "/#why"},
|
||||||
|
{
|
||||||
|
name: "Kontakt", id: "/contact"},
|
||||||
|
]}
|
||||||
|
brandName="Wotem s.c."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Masz pytania?"
|
||||||
|
description="Napisz do nas lub zadzwoń – pomożemy dobrać idealne rozwiązanie. Odwiedź nas przy ul. Bankowej 7 w Kaliszu."
|
||||||
|
inputs={[
|
||||||
|
{
|
||||||
|
name: "name", type: "text", placeholder: "Imię i Nazwisko", required: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "phone", type: "tel", placeholder: "Numer telefonu", required: true,
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
textarea={{
|
||||||
|
name: "message", placeholder: "W czym możemy pomóc?", required: true,
|
||||||
|
rows: 4,
|
||||||
|
}}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16277.jpg?id=13274163"
|
||||||
|
mediaAnimation="blur-reveal"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: "Strona Główna", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Oferta", href: "/#services"},
|
||||||
|
{
|
||||||
|
label: "Kontakt", href: "/contact"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: "ul. Bankowa 7, 62-800 Kalisz"},
|
||||||
|
{
|
||||||
|
label: "Tel: +48 62 501 34 54", href: "tel:+48625013454"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
logoText="WOTEM s.c."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
168
src/app/page.tsx
168
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Start",
|
name: "Start", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Oferta",
|
name: "Oferta", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Dlaczego my",
|
name: "Dlaczego my", id: "why"},
|
||||||
id: "why",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Kontakt",
|
name: "Kontakt", id: "/contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Wotem s.c."
|
brandName="Wotem s.c."
|
||||||
/>
|
/>
|
||||||
@@ -53,46 +45,29 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Hurtownia hydrauliczna w Kaliszu – wszystko, czego potrzebujesz"
|
title="Hurtownia hydrauliczna w Kaliszu – wszystko, czego potrzebujesz"
|
||||||
description="Profesjonalne doradztwo, szeroki wybór produktów i konkurencyjne ceny. Twoje zaufane centrum instalacyjne."
|
description="Profesjonalne doradztwo, szeroki wybór produktów i konkurencyjne ceny. Twoje zaufane centrum instalacyjne."
|
||||||
tag="⭐ 4.9 / 99 opinii"
|
tag="⭐ 4.9 / 99 opinii"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Zadzwoń teraz",
|
text: "Zadzwoń teraz", href: "tel:+48625013454"},
|
||||||
href: "tel:+48625013454",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Zapytaj o ofertę",
|
text: "Zapytaj o ofertę", href: "/contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/view-exposed-plumbing-pipes_23-2150990678.jpg?id=94957503",
|
imageSrc: "http://img.b2bpic.net/free-photo/view-exposed-plumbing-pipes_23-2150990678.jpg?id=94957503&_wi=1", imageAlt: "Showroom Wotem"},
|
||||||
imageAlt: "Showroom Wotem",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/premium-photo/plumber-tools-isolated-white_392895-796251.jpg?id=423956534",
|
imageSrc: "http://img.b2bpic.net/premium-photo/plumber-tools-isolated-white_392895-796251.jpg?id=423956534", imageAlt: "Heat pumps display"},
|
||||||
imageAlt: "Heat pumps display",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg?id=94957519",
|
imageSrc: "http://img.b2bpic.net/free-photo/view-plumber-working-fix-problems_23-2150990693.jpg?id=94957519", imageAlt: "Plumbing supplies"},
|
||||||
imageAlt: "Plumbing supplies",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg?id=21064422",
|
imageSrc: "http://img.b2bpic.net/free-photo/tools-materials-sanitary-works_93675-131721.jpg?id=21064422", imageAlt: "Expert advice"},
|
||||||
imageAlt: "Expert advice",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/premium-photo/high-angle-view-text-table-against-wall_1605443-5143.jpg?id=117410056",
|
imageSrc: "http://img.b2bpic.net/premium-photo/high-angle-view-text-table-against-wall_1605443-5143.jpg?id=117410056", imageAlt: "Product delivery"},
|
||||||
imageAlt: "Product delivery",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-plumbing-supplies-and-heati-1774611411672-f841afd3.png?_wi=6",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-plumbing-supplies-and-heati-1774611411672-f841afd3.png?_wi=6", imageAlt: "Wholesale and retail"},
|
||||||
imageAlt: "Wholesale and retail",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
@@ -106,33 +81,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Marek Nowak", handle: "Klient indywidualny", testimonial: "Profesjonalna i pomocna obsługa, zawsze dobrze doradzą w wyborze instalacji.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-a-middle-aged-m-1774611410619-3bf3df83.png"},
|
||||||
name: "Marek Nowak",
|
|
||||||
handle: "Klient indywidualny",
|
|
||||||
testimonial: "Profesjonalna i pomocna obsługa, zawsze dobrze doradzą w wyborze instalacji.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-a-middle-aged-m-1774611410619-3bf3df83.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Anna Kowalska", handle: "Klientka", testimonial: "Świetne ceny i duży wybór, wszystko dostępne od ręki.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-a-middle-aged-f-1774611411173-d08fda12.png"},
|
||||||
name: "Anna Kowalska",
|
|
||||||
handle: "Klientka",
|
|
||||||
testimonial: "Świetne ceny i duży wybór, wszystko dostępne od ręki.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-a-middle-aged-f-1774611411173-d08fda12.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Janusz Bud", handle: "Wykonawca", testimonial: "Najlepsza hurtownia w regionie, profesjonalne podejście do instalatorów.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-a-young-male-co-1774611410375-5743133a.png"},
|
||||||
name: "Janusz Bud",
|
|
||||||
handle: "Wykonawca",
|
|
||||||
testimonial: "Najlepsza hurtownia w regionie, profesjonalne podejście do instalatorów.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-a-young-male-co-1774611410375-5743133a.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Piotr Zieliński", handle: "Instalator", testimonial: "Solidny partner biznesowy, zawsze fachowe doradztwo techniczne.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-an-older-expert-1774611410684-7fdbc0f5.png"},
|
||||||
name: "Piotr Zieliński",
|
|
||||||
handle: "Instalator",
|
|
||||||
testimonial: "Solidny partner biznesowy, zawsze fachowe doradztwo techniczne.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWiiUkpowPrJY1CX34AiBvqpiE/professional-portrait-of-an-older-expert-1774611410684-7fdbc0f5.png",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Nasi klienci o nas"
|
title="Nasi klienci o nas"
|
||||||
description="Sprawdź, dlaczego fachowcy i mieszkańcy Kalisza wybierają Wotem."
|
description="Sprawdź, dlaczego fachowcy i mieszkańcy Kalisza wybierają Wotem."
|
||||||
@@ -146,42 +101,30 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Pompy ciepła",
|
title: "Pompy ciepła", description: "Nowoczesne systemy grzewcze dla Twojego domu.", icon: Zap,
|
||||||
description: "Nowoczesne systemy grzewcze dla Twojego domu.",
|
|
||||||
icon: Zap,
|
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/view-exposed-plumbing-pipes_23-2150990678.jpg?id=94957503",
|
imageSrc: "http://img.b2bpic.net/free-photo/view-exposed-plumbing-pipes_23-2150990678.jpg?id=94957503&_wi=2"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tilt-up-shot-out-service-condenser-unit-with-protection-cover-removed-need-fixing-with-damaged-electric-internal-parts-outside-hvac-system-working-anymore-ready-be-fixed_482257-64976.jpg?id=52473930",
|
imageSrc: "http://img.b2bpic.net/free-photo/tilt-up-shot-out-service-condenser-unit-with-protection-cover-removed-need-fixing-with-damaged-electric-internal-parts-outside-hvac-system-working-anymore-ready-be-fixed_482257-64976.jpg?id=52473930"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Armatura i instalacje",
|
title: "Armatura i instalacje", description: "Kompletny osprzęt instalacyjny najwyższej jakości.", icon: Droplets,
|
||||||
description: "Kompletny osprzęt instalacyjny najwyższej jakości.",
|
|
||||||
icon: Droplets,
|
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/premium-photo/red-metal-plumbing-tap-sanitary-furniture-white-background_154092-11745.jpg?id=22550694",
|
imageSrc: "http://img.b2bpic.net/premium-photo/red-metal-plumbing-tap-sanitary-furniture-white-background_154092-11745.jpg?id=22550694"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/premium-photo/plumbing-parts-accessories-tools-blue-white-background_154092-12668.jpg?id=22673698",
|
imageSrc: "http://img.b2bpic.net/premium-photo/plumbing-parts-accessories-tools-blue-white-background_154092-12668.jpg?id=22673698"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Artykuły sanitarne",
|
title: "Artykuły sanitarne", description: "Wszystko do wykończenia łazienki i instalacji domowych.", icon: Droplet,
|
||||||
description: "Wszystko do wykończenia łazienki i instalacji domowych.",
|
|
||||||
icon: Droplet,
|
|
||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/premium-photo/plumbers-tools-toilet-home_392895-801556.jpg?id=423964263",
|
imageSrc: "http://img.b2bpic.net/premium-photo/plumbers-tools-toilet-home_392895-801556.jpg?id=423964263"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/premium-photo/close-up-photo-ceramic-bowl-toilet-domestic-bathroom-with-box-tools_283617-2737.jpg?id=15814375",
|
imageSrc: "http://img.b2bpic.net/premium-photo/close-up-photo-ceramic-bowl-toilet-domestic-bathroom-with-box-tools_283617-2737.jpg?id=15814375"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -195,78 +138,33 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
title="Dlaczego WOTEM?"
|
title="Dlaczego WOTEM?"
|
||||||
description={[
|
description={[
|
||||||
"20+ lat doświadczenia w branży instalacyjnej.",
|
"20+ lat doświadczenia w branży instalacyjnej.", "Lokalna firma w sercu Kalisza – łatwy dojazd i parking.", "Fachowe doradztwo techniczne na każdym etapie zakupów.", "Konkurencyjne ceny i duży wybór produktów na miejscu."]}
|
||||||
"Lokalna firma w sercu Kalisza – łatwy dojazd i parking.",
|
|
||||||
"Fachowe doradztwo techniczne na każdym etapie zakupów.",
|
|
||||||
"Konkurencyjne ceny i duży wybór produktów na miejscu.",
|
|
||||||
]}
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Skontaktuj się",
|
text: "Skontaktuj się", href: "/contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactSplitForm
|
|
||||||
useInvertedBackground={false}
|
|
||||||
title="Masz pytania?"
|
|
||||||
description="Napisz do nas lub zadzwoń – pomożemy dobrać idealne rozwiązanie. Odwiedź nas przy ul. Bankowej 7 w Kaliszu."
|
|
||||||
inputs={[
|
|
||||||
{
|
|
||||||
name: "name",
|
|
||||||
type: "text",
|
|
||||||
placeholder: "Imię i Nazwisko",
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "phone",
|
|
||||||
type: "tel",
|
|
||||||
placeholder: "Numer telefonu",
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
textarea={{
|
|
||||||
name: "message",
|
|
||||||
placeholder: "W czym możemy pomóc?",
|
|
||||||
required: true,
|
|
||||||
rows: 4,
|
|
||||||
}}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-working-office_329181-16277.jpg?id=13274163"
|
|
||||||
mediaAnimation="blur-reveal"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Strona Główna",
|
label: "Strona Główna", href: "/"},
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Oferta",
|
label: "Oferta", href: "/#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Kontakt",
|
label: "Kontakt", href: "/contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "ul. Bankowa 7, 62-800 Kalisz",
|
label: "ul. Bankowa 7, 62-800 Kalisz"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Tel: +48 62 501 34 54",
|
label: "Tel: +48 62 501 34 54", href: "tel:+48625013454"},
|
||||||
href: "tel:+48625013454",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user