Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 497626f943 | |||
| 6fadf47307 | |||
| 0648385d9d | |||
| ca8bd3d3f4 | |||
| 3e1ed905f7 | |||
| 23a1bceeae | |||
| b22297e7e5 | |||
| adea6acfb3 | |||
| 83231f2756 |
156
src/app/page.tsx
156
src/app/page.tsx
@@ -10,7 +10,7 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Home, Phone } from "lucide-react";
|
||||
import { Home, Phone, MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,14 +30,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Services", id: "services"},
|
||||
{
|
||||
name: "About", id: "why"},
|
||||
{
|
||||
name: "Process", id: "process"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "why" },
|
||||
{ name: "Process", id: "process" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Desert Oasis Plumbing"
|
||||
/>
|
||||
@@ -46,62 +42,39 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ 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."
|
||||
buttons={[
|
||||
{ text: "Get a Free Quote", href: "#contact" },
|
||||
{ text: "Call Now: (623) 888-4631", href: "tel:+16238884631" },
|
||||
]}
|
||||
description="From leaky faucets to full remodels — we deliver honest work, fair prices, and a spotless finish across Phoenix, Arizona and the surrounding Valley. Serving the community from our base in Phoenix, AZ."
|
||||
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: "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: "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: "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: "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: "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: "Call Now: (623) 888-4631", href: "tel:+16238884631"},
|
||||
]}
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
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-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-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-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-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-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: "Licensed & Insured"},
|
||||
{
|
||||
type: "text", text: "Family-Owned & Operated"},
|
||||
{
|
||||
type: "text", text: "Serving the Entire Valley"},
|
||||
{
|
||||
type: "text", text: "100% Satisfaction Guaranteed"},
|
||||
{ type: "text", text: "24/7 Emergency Service" },
|
||||
{ type: "text", text: "Licensed & Insured" },
|
||||
{ type: "text", text: "Family-Owned & Operated" },
|
||||
{ type: "text", text: "Serving the Entire Valley" },
|
||||
{ type: "text", text: "100% Satisfaction Guaranteed" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -112,30 +85,12 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
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: "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: "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: "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: "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: "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: "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" },
|
||||
]}
|
||||
title="Expert Plumbing for Every Situation"
|
||||
description="Residential and commercial plumbing — handled with care, completed on time, backed by a satisfaction guarantee."
|
||||
@@ -146,7 +101,7 @@ export default function LandingPage() {
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="The Honest Choice"
|
||||
description="We pride ourselves on upfront pricing, licensed service, and respecting your home environment. With 15+ years of experience, you're in good hands."
|
||||
description="We pride ourselves on upfront pricing, licensed service, and respecting your home environment. Based in Phoenix, Arizona, we've served the Valley for 15+ years."
|
||||
tag="About Us"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-professional-technician-with-plumbing--1775645681257-48a3f382.png"
|
||||
/>
|
||||
@@ -158,16 +113,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
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: "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: "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: "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: "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: "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."
|
||||
@@ -176,15 +126,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
textboxLayout="split-actions"
|
||||
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: "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: "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: "3", title: "Is your work guaranteed?", content: "Every job is backed by a full 2-year labor warranty for your complete peace of mind." },
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:+16238884631" }
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bye5KTJv4YA9hwTeogtt4l5M3O/a-professional-technician-explaining-som-1775645681718-5e70d5aa.png"
|
||||
title="Common Questions"
|
||||
@@ -197,12 +147,10 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<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."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
text="Located in Phoenix, Arizona. Reach us at +1 (623) 888-4631. We're available 24/7 for emergency service and 8AM-6PM for non-urgent inquiries. We'll get back to you within one hour during business hours."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: (623) 888-4631", href: "tel:+16238884631"},
|
||||
{ text: "Call Now: (623) 888-4631", href: "tel:+16238884631" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -210,13 +158,11 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Desert Oasis Plumbing"
|
||||
leftLink={{
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Terms of Service", href: "#"}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user