Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97af9fc9e5 | |||
| 4ecf158d96 |
240
src/app/page.tsx
240
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
name: "Services", id: "services"},
|
||||
{
|
||||
name: "About",
|
||||
id: "why",
|
||||
},
|
||||
name: "About", id: "why"},
|
||||
{
|
||||
name: "Process",
|
||||
id: "process",
|
||||
},
|
||||
name: "Process", id: "process"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Desert Oasis Plumbing"
|
||||
/>
|
||||
@@ -55,57 +47,32 @@ export default function LandingPage() {
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Your Oasis of Reliable Plumbing."
|
||||
description="From leaky faucets to full remodels — we deliver honest work, fair prices, and a spotless finish across Phoenix, AZ and the surrounding Valley."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Teresa R.",
|
||||
handle: "Phoenix, AZ",
|
||||
testimonial: "Desert Oasis showed up within the hour and had our burst pipe fixed before dinner.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-warm-lighti-1775645682404-0189600a.png?_wi=1",
|
||||
},
|
||||
name: "Teresa R.", handle: "Phoenix, AZ", testimonial: "Desert Oasis showed up within the hour and had our burst pipe fixed before dinner.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-warm-lighti-1775645682404-0189600a.png?_wi=1"},
|
||||
{
|
||||
name: "David M.",
|
||||
handle: "Mesa, AZ",
|
||||
testimonial: "Jorge and his team replaced our entire water line in one day. Highly recommend.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-soft-li-1775645682730-c2b147fd.png?_wi=1",
|
||||
},
|
||||
name: "David M.", handle: "Mesa, AZ", testimonial: "Jorge and his team replaced our entire water line in one day. Highly recommend.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-soft-li-1775645682730-c2b147fd.png?_wi=1"},
|
||||
{
|
||||
name: "Linda P.",
|
||||
handle: "Chandler, AZ",
|
||||
testimonial: "Our water heater died at 11pm. They arrived by midnight. That's integrity.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-bright-and--1775645682343-281c0d00.png?_wi=1",
|
||||
},
|
||||
name: "Linda P.", handle: "Chandler, AZ", testimonial: "Our water heater died at 11pm. They arrived by midnight. That's integrity.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-bright-and--1775645682343-281c0d00.png?_wi=1"},
|
||||
{
|
||||
name: "Angela K.",
|
||||
handle: "Gilbert, AZ",
|
||||
testimonial: "Three other plumbers quoted double. Desert Oasis gave us a fair price and did the job perfectly.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-modern--1775645682543-10ddc556.png?_wi=1",
|
||||
},
|
||||
name: "Angela K.", handle: "Gilbert, AZ", testimonial: "Three other plumbers quoted double. Desert Oasis gave us a fair price and did the job perfectly.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-modern--1775645682543-10ddc556.png?_wi=1"},
|
||||
{
|
||||
name: "Mike J.",
|
||||
handle: "Scottsdale, AZ",
|
||||
testimonial: "Professional, fast, and very clean. Highly recommended for any plumbing needs.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-clean-and-b-1775645684670-3b8e1bd5.png?_wi=1",
|
||||
},
|
||||
name: "Mike J.", handle: "Scottsdale, AZ", testimonial: "Professional, fast, and very clean. Highly recommended for any plumbing needs.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-clean-and-b-1775645684670-3b8e1bd5.png?_wi=1"},
|
||||
]}
|
||||
tag="Family-Owned Since 2008"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get a Free Quote", href: "#contact"},
|
||||
{
|
||||
text: "See All Services",
|
||||
href: "#services",
|
||||
},
|
||||
text: "See All Services", href: "#services"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/professional-plumbing-service-interior-s-1775645682359-d750145c.png"
|
||||
imageAlt="Desert Oasis Plumbing technician on a service call"
|
||||
@@ -113,48 +80,28 @@ export default function LandingPage() {
|
||||
tagIcon={Home}
|
||||
avatars={[
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-warm-lighti-1775645682404-0189600a.png",
|
||||
alt: "Teresa R.",
|
||||
},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-warm-lighti-1775645682404-0189600a.png", alt: "Teresa R."},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-soft-li-1775645682730-c2b147fd.png",
|
||||
alt: "David M.",
|
||||
},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-soft-li-1775645682730-c2b147fd.png", alt: "David M."},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-bright-and--1775645682343-281c0d00.png",
|
||||
alt: "Linda P.",
|
||||
},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-bright-and--1775645682343-281c0d00.png", alt: "Linda P."},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-modern--1775645682543-10ddc556.png",
|
||||
alt: "Angela K.",
|
||||
},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-modern--1775645682543-10ddc556.png", alt: "Angela K."},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-clean-and-b-1775645684670-3b8e1bd5.png",
|
||||
alt: "Mike J.",
|
||||
},
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-clean-and-b-1775645684670-3b8e1bd5.png", alt: "Mike J."},
|
||||
]}
|
||||
avatarText="Trusted by 500+ local homeowners"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "24/7 Emergency Service",
|
||||
},
|
||||
type: "text", text: "24/7 Emergency Service"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Licensed & Insured",
|
||||
},
|
||||
type: "text", text: "Licensed & Insured"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family-Owned & Operated",
|
||||
},
|
||||
type: "text", text: "Family-Owned & Operated"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Serving the Entire Valley",
|
||||
},
|
||||
type: "text", text: "Serving the Entire Valley"},
|
||||
{
|
||||
type: "text",
|
||||
text: "100% Satisfaction Guaranteed",
|
||||
},
|
||||
type: "text", text: "100% Satisfaction Guaranteed"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -166,59 +113,29 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Repairs & Maintenance",
|
||||
tags: [
|
||||
"Leaky Faucets",
|
||||
"Slow Drains",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-high-quality-plumbing-work-o-1775645682042-5ea3959f.png?_wi=1",
|
||||
},
|
||||
id: "1", title: "Repairs & Maintenance", tags: [
|
||||
"Leaky Faucets", "Slow Drains"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-high-quality-plumbing-work-o-1775645682042-5ea3959f.png?_wi=1"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Bathroom Remodeling",
|
||||
tags: [
|
||||
"Full Installs",
|
||||
"Fixtures",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-a-modern-bathroom-faucet-wit-1775645682174-a3ce448e.png?_wi=1",
|
||||
},
|
||||
id: "2", title: "Bathroom Remodeling", tags: [
|
||||
"Full Installs", "Fixtures"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-a-modern-bathroom-faucet-wit-1775645682174-a3ce448e.png?_wi=1"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Water Heater Services",
|
||||
tags: [
|
||||
"Tank",
|
||||
"Tankless",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-new-modern-water-heater-installation-i-1775645681813-b8df3815.png?_wi=1",
|
||||
},
|
||||
id: "3", title: "Water Heater Services", tags: [
|
||||
"Tank", "Tankless"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-new-modern-water-heater-installation-i-1775645681813-b8df3815.png?_wi=1"},
|
||||
{
|
||||
id: "4",
|
||||
title: "New Construction",
|
||||
tags: [
|
||||
"Rough-in",
|
||||
"Finish",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-high-quality-plumbing-work-o-1775645682042-5ea3959f.png?_wi=2",
|
||||
},
|
||||
id: "4", title: "New Construction", tags: [
|
||||
"Rough-in", "Finish"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-high-quality-plumbing-work-o-1775645682042-5ea3959f.png?_wi=2"},
|
||||
{
|
||||
id: "5",
|
||||
title: "Water Softeners",
|
||||
tags: [
|
||||
"Installation",
|
||||
"Service",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-a-modern-bathroom-faucet-wit-1775645682174-a3ce448e.png?_wi=2",
|
||||
},
|
||||
id: "5", title: "Water Softeners", tags: [
|
||||
"Installation", "Service"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/close-up-of-a-modern-bathroom-faucet-wit-1775645682174-a3ce448e.png?_wi=2"},
|
||||
{
|
||||
id: "6",
|
||||
title: "24/7 Emergency",
|
||||
tags: [
|
||||
"Flooding",
|
||||
"No-Water",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-new-modern-water-heater-installation-i-1775645681813-b8df3815.png?_wi=2",
|
||||
},
|
||||
id: "6", title: "24/7 Emergency", tags: [
|
||||
"Flooding", "No-Water"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-new-modern-water-heater-installation-i-1775645681813-b8df3815.png?_wi=2"},
|
||||
]}
|
||||
title="Expert Plumbing for Every Situation"
|
||||
description="Residential and commercial plumbing — handled with care, completed on time, backed by a satisfaction guarantee."
|
||||
@@ -242,40 +159,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "David M.",
|
||||
handle: "Mesa, AZ",
|
||||
testimonial: "Jorge and his team replaced our entire water line in one day. The pricing was fair.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-warm-lighti-1775645682404-0189600a.png?_wi=2",
|
||||
},
|
||||
id: "1", name: "David M.", handle: "Mesa, AZ", testimonial: "Jorge and his team replaced our entire water line in one day. The pricing was fair.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-warm-lighti-1775645682404-0189600a.png?_wi=2"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Linda P.",
|
||||
handle: "Chandler, AZ",
|
||||
testimonial: "Our water heater died at 11pm. I called Desert Oasis and a tech was here by midnight.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-soft-li-1775645682730-c2b147fd.png?_wi=2",
|
||||
},
|
||||
id: "2", name: "Linda P.", handle: "Chandler, AZ", testimonial: "Our water heater died at 11pm. I called Desert Oasis and a tech was here by midnight.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-soft-li-1775645682730-c2b147fd.png?_wi=2"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Angela K.",
|
||||
handle: "Gilbert, AZ",
|
||||
testimonial: "Three other plumbers quoted double. Desert Oasis gave us a fair price and perfect service.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-bright-and--1775645682343-281c0d00.png?_wi=2",
|
||||
},
|
||||
id: "3", name: "Angela K.", handle: "Gilbert, AZ", testimonial: "Three other plumbers quoted double. Desert Oasis gave us a fair price and perfect service.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-bright-and--1775645682343-281c0d00.png?_wi=2"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Teresa R.",
|
||||
handle: "Phoenix, AZ",
|
||||
testimonial: "They were done before we got home from work. Incredible service.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-modern--1775645682543-10ddc556.png?_wi=2",
|
||||
},
|
||||
id: "4", name: "Teresa R.", handle: "Phoenix, AZ", testimonial: "They were done before we got home from work. Incredible service.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-satisfied-customer-modern--1775645682543-10ddc556.png?_wi=2"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Mike J.",
|
||||
handle: "Scottsdale, AZ",
|
||||
testimonial: "Professional, fast, and very clean. Highly recommended for any plumbing needs.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-clean-and-b-1775645684670-3b8e1bd5.png?_wi=2",
|
||||
},
|
||||
id: "5", name: "Mike J.", handle: "Scottsdale, AZ", testimonial: "Professional, fast, and very clean. Highly recommended for any plumbing needs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/headshot-of-a-happy-customer-clean-and-b-1775645684670-3b8e1bd5.png?_wi=2"},
|
||||
]}
|
||||
title="Neighbors Trust Us"
|
||||
description="Don't take our word for it — here's what homeowners across the Valley are saying."
|
||||
@@ -288,20 +180,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer emergency services?",
|
||||
content: "Yes, we provide 24/7 emergency plumbing service in the Greater Phoenix area.",
|
||||
},
|
||||
id: "1", title: "Do you offer emergency services?", content: "Yes, we provide 24/7 emergency plumbing service in the Greater Phoenix area."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What are your service areas?",
|
||||
content: "We cover all of Phoenix, Scottsdale, Mesa, Chandler, Gilbert, and surrounding Valley cities.",
|
||||
},
|
||||
id: "2", title: "What are your service areas?", content: "We cover all of Phoenix, Scottsdale, Mesa, Chandler, Gilbert, and surrounding Valley cities."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is your work guaranteed?",
|
||||
content: "Every job is backed by a full 2-year labor warranty for your complete peace of mind.",
|
||||
},
|
||||
id: "3", title: "Is your work guaranteed?", content: "Every job is backed by a full 2-year labor warranty for your complete peace of mind."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-professional-technician-explaining-som-1775645681718-5e70d5aa.png"
|
||||
title="Common Questions"
|
||||
@@ -315,14 +198,11 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
text="Let's Fix It Together. We'll get back to you within one hour during business hours."
|
||||
variant: "sparkles-gradient"}}
|
||||
text="Let's Fix It Together. We respond within one hour during our business hours, Monday through Friday, 7 AM to 7 PM."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: (623) 888-4631",
|
||||
href: "tel:+16238884631",
|
||||
},
|
||||
text: "Call Now: (623) 888-4631", href: "tel:+16238884631"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -331,13 +211,9 @@ export default function LandingPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Desert Oasis Plumbing"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Terms of Service", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user