Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a75334137 | |||
| 669e2be486 | |||
| d433db58dc | |||
| b136bcef1e | |||
| 5fd1a30db7 | |||
| 154bdd27f5 | |||
| dcd95bb5a0 |
@@ -26,29 +26,17 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "/testimonials"},
|
||||||
id: "/testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Papakura Plumbing"
|
brandName="Papakura Plumbing"
|
||||||
/>
|
/>
|
||||||
@@ -59,9 +47,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "Our Mission"},
|
||||||
content: "Our Mission",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -76,15 +62,9 @@ export default function LandingPage() {
|
|||||||
description="Numbers that define our professional service."
|
description="Numbers that define our professional service."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "10+", description: "Years Experience"},
|
||||||
value: "10+",
|
|
||||||
description: "Years Experience",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "500+", description: "Projects Completed"},
|
||||||
value: "500+",
|
|
||||||
description: "Projects Completed",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -93,33 +73,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Papakura, NZ",
|
label: "Papakura, NZ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "0800 123 456",
|
label: "027 250 4552", href: "tel:0272504552"},
|
||||||
href: "tel:0800123456",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -26,29 +26,17 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "/testimonials"},
|
||||||
id: "/testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Papakura Plumbing"
|
brandName="Papakura Plumbing"
|
||||||
/>
|
/>
|
||||||
@@ -62,35 +50,11 @@ export default function LandingPage() {
|
|||||||
title="Plumbing Tips"
|
title="Plumbing Tips"
|
||||||
blogs={[
|
blogs={[
|
||||||
{
|
{
|
||||||
id: "b1",
|
id: "b1", category: "DIY", title: "Fixing a leaky tap", excerpt: "Easy tips to fix your faucet.", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=3", authorName: "Team", authorAvatar: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg", date: "2024-05-01"},
|
||||||
category: "DIY",
|
|
||||||
title: "Fixing a leaky tap",
|
|
||||||
excerpt: "Easy tips to fix your faucet.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=3",
|
|
||||||
authorName: "Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg",
|
|
||||||
date: "2024-05-01",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "b2",
|
id: "b2", category: "Maintenance", title: "Preventive Care", excerpt: "How to avoid pipe bursts.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=3", authorName: "Team", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg", date: "2024-05-02"},
|
||||||
category: "Maintenance",
|
|
||||||
title: "Preventive Care",
|
|
||||||
excerpt: "How to avoid pipe bursts.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=3",
|
|
||||||
authorName: "Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg",
|
|
||||||
date: "2024-05-02",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "b3",
|
id: "b3", category: "News", title: "Company Update", excerpt: "Exciting new tools arrived.", imageSrc: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg?_wi=2", authorName: "Team", authorAvatar: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg", date: "2024-05-03"},
|
||||||
category: "News",
|
|
||||||
title: "Company Update",
|
|
||||||
excerpt: "Exciting new tools arrived.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg?_wi=2",
|
|
||||||
authorName: "Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg",
|
|
||||||
date: "2024-05-03",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
description="Guides for your home."
|
description="Guides for your home."
|
||||||
/>
|
/>
|
||||||
@@ -106,15 +70,9 @@ export default function LandingPage() {
|
|||||||
description="Useful stats."
|
description="Useful stats."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "n1",
|
id: "n1", value: "20+", description: "Helpful Guides"},
|
||||||
value: "20+",
|
|
||||||
description: "Helpful Guides",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "n2",
|
id: "n2", value: "50+", description: "Industry Tips"},
|
||||||
value: "50+",
|
|
||||||
description: "Industry Tips",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -123,33 +81,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Papakura, NZ",
|
label: "Papakura, NZ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "0800 123 456",
|
label: "027 250 4552", href: "tel:0272504552"},
|
||||||
href: "tel:0800123456",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -26,29 +26,17 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "/testimonials"},
|
||||||
id: "/testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Papakura Plumbing"
|
brandName="Papakura Plumbing"
|
||||||
/>
|
/>
|
||||||
@@ -58,8 +46,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
title="Get in touch today"
|
title="Get in touch today"
|
||||||
description="Have plumbing needs? We are ready to help."
|
description="Have plumbing needs? We are ready to help."
|
||||||
@@ -70,8 +57,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
title="Find our office"
|
title="Find our office"
|
||||||
description="We look forward to meeting you."
|
description="We look forward to meeting you."
|
||||||
@@ -84,33 +70,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Papakura, NZ",
|
label: "Papakura, NZ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "0800 123 456",
|
label: "027 250 4552", href: "tel:0272504552"},
|
||||||
href: "tel:0800123456",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
135
src/app/page.tsx
135
src/app/page.tsx
@@ -29,29 +29,17 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "/testimonials"},
|
||||||
id: "/testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Papakura Plumbing"
|
brandName="Papakura Plumbing"
|
||||||
/>
|
/>
|
||||||
@@ -60,15 +48,12 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroLogoBillboardSplit
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
logoText="Papakura Plumbing Services"
|
logoText="Papakura Plumbing Services"
|
||||||
description="Your Trusted Plumbing Experts in Papakura. Providing professional, reliable service for your home and business."
|
description="Your Trusted Plumbing Experts in Papakura. Providing professional, reliable service for your home and business."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get a Free Quote",
|
text: "Get a Free Quote", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
layoutOrder="default"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721580.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721580.jpg"
|
||||||
@@ -82,14 +67,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "About Papakura Plumbing"},
|
||||||
content: "About Papakura Plumbing",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-woman-man-working_23-2148899716.jpg", alt: "Plumbing expert"},
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-woman-man-working_23-2148899716.jpg",
|
|
||||||
alt: "Plumbing expert",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -101,21 +81,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Hidden leaks",
|
"Hidden leaks", "Burst pipes", "Low water pressure", "Blocked drains", "Faulty hot water"],
|
||||||
"Burst pipes",
|
|
||||||
"Low water pressure",
|
|
||||||
"Blocked drains",
|
|
||||||
"Faulty hot water",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"Expert leak detection",
|
"Expert leak detection", "Emergency repairs", "Modern installation", "Preventive maintenance", "Professional advice"],
|
||||||
"Emergency repairs",
|
|
||||||
"Modern installation",
|
|
||||||
"Preventive maintenance",
|
|
||||||
"Professional advice",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
title="Why Choose Us"
|
title="Why Choose Us"
|
||||||
description="We prioritize honesty, reliability, and customer focus in every job we take."
|
description="We prioritize honesty, reliability, and customer focus in every job we take."
|
||||||
@@ -129,45 +99,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "Excellent service, very professional.", rating: 5,
|
||||||
name: "Sarah Johnson",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=1"},
|
||||||
handle: "@sarahj",
|
|
||||||
testimonial: "Excellent service, very professional.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael Chen", handle: "@mchen", testimonial: "Fast response to my emergency leak.", rating: 5,
|
||||||
name: "Michael Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=1"},
|
||||||
handle: "@mchen",
|
|
||||||
testimonial: "Fast response to my emergency leak.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily Rodriguez", handle: "@emilyr", testimonial: "Great experience, highly recommend.", rating: 5,
|
||||||
name: "Emily Rodriguez",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg?_wi=1"},
|
||||||
handle: "@emilyr",
|
|
||||||
testimonial: "Great experience, highly recommend.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David Kim", handle: "@dkim", testimonial: "Reliable and honest plumbing service.", rating: 5,
|
||||||
name: "David Kim",
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-office-computer_1303-31498.jpg?_wi=1"},
|
||||||
handle: "@dkim",
|
|
||||||
testimonial: "Reliable and honest plumbing service.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-office-computer_1303-31498.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Jessica Lee", handle: "@jlee", testimonial: "Solved a complex pipe issue quickly!", rating: 5,
|
||||||
name: "Jessica Lee",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=2"},
|
||||||
handle: "@jlee",
|
|
||||||
testimonial: "Solved a complex pipe issue quickly!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="What Our Customers Say"
|
title="What Our Customers Say"
|
||||||
@@ -183,15 +128,9 @@ export default function LandingPage() {
|
|||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "Do you provide emergency services?", content: "Yes, we are available 24/7 for urgent plumbing issues."},
|
||||||
title: "Do you provide emergency services?",
|
|
||||||
content: "Yes, we are available 24/7 for urgent plumbing issues.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "What areas do you serve?", content: "We proudly serve the wider Papakura area."},
|
||||||
title: "What areas do you serve?",
|
|
||||||
content: "We proudly serve the wider Papakura area.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -200,33 +139,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Papakura, NZ",
|
label: "Papakura, NZ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "0800 123 456",
|
label: "027 250 4552", href: "tel:0272504552"},
|
||||||
href: "tel:0800123456",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -26,29 +26,17 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "/testimonials"},
|
||||||
id: "/testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Papakura Plumbing"
|
brandName="Papakura Plumbing"
|
||||||
/>
|
/>
|
||||||
@@ -62,26 +50,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Leak Detection", price: "Request Quote", variant: "Service", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=1"},
|
||||||
name: "Leak Detection",
|
|
||||||
price: "Request Quote",
|
|
||||||
variant: "Service",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Emergency Repairs", price: "Request Quote", variant: "Service", imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=1"},
|
||||||
name: "Emergency Repairs",
|
|
||||||
price: "Request Quote",
|
|
||||||
variant: "Service",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Installation", price: "Request Quote", variant: "Service", imageSrc: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg?_wi=1"},
|
||||||
name: "Installation",
|
|
||||||
price: "Request Quote",
|
|
||||||
variant: "Service",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Services"
|
title="Our Services"
|
||||||
description="Comprehensive plumbing solutions tailored to your needs."
|
description="Comprehensive plumbing solutions tailored to your needs."
|
||||||
@@ -98,16 +71,10 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Inspection",
|
title: "Inspection", description: "We diagnose the root cause.", imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=2"},
|
||||||
description: "We diagnose the root cause.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53677.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Solution",
|
title: "Solution", description: "We provide the fix.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=2"},
|
||||||
description: "We provide the fix.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53070.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -116,33 +83,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Papakura, NZ",
|
label: "Papakura, NZ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "0800 123 456",
|
label: "027 250 4552", href: "tel:0272504552"},
|
||||||
href: "tel:0800123456",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -26,29 +26,17 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About Us",
|
name: "About Us", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "/testimonials"},
|
||||||
id: "/testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Blog",
|
name: "Blog", id: "/blog"},
|
||||||
id: "/blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Papakura Plumbing"
|
brandName="Papakura Plumbing"
|
||||||
/>
|
/>
|
||||||
@@ -61,45 +49,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Client A", handle: "@clienta", testimonial: "Wonderful.", rating: 5,
|
||||||
name: "Client A",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=3"},
|
||||||
handle: "@clienta",
|
|
||||||
testimonial: "Wonderful.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Client B", handle: "@clientb", testimonial: "Very fast.", rating: 5,
|
||||||
name: "Client B",
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2"},
|
||||||
handle: "@clientb",
|
|
||||||
testimonial: "Very fast.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Client C", handle: "@clientc", testimonial: "Friendly guys.", rating: 5,
|
||||||
name: "Client C",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg?_wi=2"},
|
||||||
handle: "@clientc",
|
|
||||||
testimonial: "Friendly guys.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-with-trendy-hairdo-frowns-face-with-pleasure_273609-8674.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Client D", handle: "@clientd", testimonial: "So helpful.", rating: 5,
|
||||||
name: "Client D",
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-office-computer_1303-31498.jpg?_wi=2"},
|
||||||
handle: "@clientd",
|
|
||||||
testimonial: "So helpful.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-office-computer_1303-31498.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Client E", handle: "@cliente", testimonial: "Professional and tidy.", rating: 5,
|
||||||
name: "Client E",
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=3"},
|
||||||
handle: "@cliente",
|
|
||||||
testimonial: "Professional and tidy.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="All Testimonials"
|
title="All Testimonials"
|
||||||
@@ -115,21 +78,9 @@ export default function LandingPage() {
|
|||||||
description="More reviews from our clients."
|
description="More reviews from our clients."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "s1",
|
id: "s1", title: "Great work", quote: "Fantastic service.", name: "Jane", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=4"},
|
||||||
title: "Great work",
|
|
||||||
quote: "Fantastic service.",
|
|
||||||
name: "Jane",
|
|
||||||
role: "Homeowner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-travel-agency_23-2150433448.jpg?_wi=4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "s2",
|
id: "s2", title: "Reliable", quote: "Never lets us down.", name: "Bob", role: "Business Owner", imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=4"},
|
||||||
title: "Reliable",
|
|
||||||
quote: "Never lets us down.",
|
|
||||||
name: "Bob",
|
|
||||||
role: "Business Owner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=4",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -138,33 +89,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Papakura, NZ",
|
label: "Papakura, NZ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "0800 123 456",
|
label: "027 250 4552", href: "tel:0272504552"},
|
||||||
href: "tel:0800123456",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user