17 Commits

Author SHA1 Message Date
ba500281a8 Merge version_18 into main
Merge version_18 into main
2026-03-19 22:44:23 +00:00
bdfa5d9f57 Update src/app/page.tsx 2026-03-19 22:44:18 +00:00
d9913b3290 Merge version_17 into main
Merge version_17 into main
2026-03-19 22:43:07 +00:00
4ca2b7ef43 Update src/app/page.tsx 2026-03-19 22:43:03 +00:00
2db5079ab2 Merge version_16 into main
Merge version_16 into main
2026-03-19 22:39:13 +00:00
f6b00bfaa5 Update src/app/page.tsx 2026-03-19 22:39:09 +00:00
8509690a4e Merge version_15 into main
Merge version_15 into main
2026-03-19 22:37:45 +00:00
55796d93f6 Update src/app/page.tsx 2026-03-19 22:37:41 +00:00
917f19eabb Merge version_14 into main
Merge version_14 into main
2026-03-19 22:36:12 +00:00
c223b298a0 Update src/app/page.tsx 2026-03-19 22:36:08 +00:00
84ef7754de Merge version_13 into main
Merge version_13 into main
2026-03-19 22:33:02 +00:00
e5068ebfe1 Update src/app/page.tsx 2026-03-19 22:32:58 +00:00
1618423fa2 Merge version_12 into main
Merge version_12 into main
2026-03-19 22:24:18 +00:00
3eee4abba9 Update src/app/page.tsx 2026-03-19 22:24:14 +00:00
e18537cfc6 Merge version_11 into main
Merge version_11 into main
2026-03-19 22:22:02 +00:00
9d7aa85a07 Update src/app/page.tsx 2026-03-19 22:21:58 +00:00
117bc0577e Merge version_10 into main
Merge version_10 into main
2026-03-19 22:16:41 +00:00

View File

@@ -9,7 +9,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { AlertCircle, Award, Building, CheckCircle, Clock, Droplet, Hammer, HelpCircle, Heart, MessageCircle, Phone, Search, Settings, Shield, Star, Wrench, Zap, Lock, Clock as Clock24, Check } from 'lucide-react';
import { AlertCircle, Award, Building, CheckCircle, Clock, Droplet, Hammer, HelpCircle, Heart, MessageCircle, Phone, Search, Settings, Shield, Star, Wrench, Zap, Lock, Clock as Clock24, Check, Award as AwardShield, Briefcase } from 'lucide-react';
export default function LandingPage() {
return (
@@ -45,18 +45,21 @@ export default function LandingPage() {
title="Fast. Honest. Done Right the First Time."
description="Arizona's trusted local plumbers delivering same-day service, expert craftsmanship, and real transparency—no surprises."
background={{ variant: "plain" }}
tag="Licensed #12345 | Serving Since 2015 | 5-Star Rated Across Arizona"
tag="5-Star Rated Across Arizona"
tagIcon={Star}
tagAnimation="slide-up"
marqueeItems={[
{ type: "text-icon", text: "Licensed & Insured", icon: Lock },
{ type: "text-icon", text: "24/7 Available", icon: Clock24 },
{ type: "text-icon", text: "100% Satisfaction", icon: Check }
{ type: "text-icon", text: "100% Satisfaction", icon: Check },
{ type: "text-icon", text: "License #ROC #311662", icon: Briefcase },
{ type: "text-icon", text: "BBB Rating: A+", icon: AwardShield },
{ type: "text-icon", text: "Service Hours: 24/7", icon: Clock }
]}
showMarqueeCard={true}
showMarqueeCard={false}
marqueeSpeed={30}
buttons={[
{ text: "Call Now", href: "tel:480-702-6165" },
{ text: "Call Now - 24/7 Available", href: "tel:480-702-6165" },
{ text: "Get a Free Estimate", href: "#contact" }
]}
buttonAnimation="slide-up"
@@ -181,7 +184,8 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Schedule Your Service Today", href: "tel:480-702-6165" }
{ text: "Schedule Your Service Today", href: "tel:480-702-6165" },
{ text: "View All Services & Pricing", href: "#" }
]}
buttonAnimation="slide-up"
ariaLabel="Services section"
@@ -224,7 +228,7 @@ export default function LandingPage() {
<div id="trust-section" data-section="trust-section">
<MetricCardThree
title="No Surprises. No Confusion. Just Clear Communication."
title="No Surprises. No Confusion. Just Honest Pricing and Expert Work."
description="We know one of the biggest frustrations in plumbing is unexpected pricing. That's why we focus on clear communication before any work begins. Our goal isn't to be the cheapest—it's to deliver real value, lasting repairs, and service you feel good about."
tag="Our Promise"
tagIcon={Heart}
@@ -340,7 +344,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
faqs={[
{
id: "1", title: "Do you offer same-day service?", content: "Yes! We offer same-day emergency plumbing services. This is one of our biggest strengths—when you need us, we're there fast. Call us immediately at 480-702-6165 and we'll dispatch a technician to your location as quickly as possible. We understand that plumbing emergencies can't wait, so we prioritize rapid response and immediate availability to get your problem solved today."
id: "1", title: "Do you offer same-day service?", content: "Yes! We offer same-day emergency plumbing services. Call us at 480-702-6165 and we'll dispatch a technician as quickly as possible."
},
{
id: "2", title: "What areas do you serve?", content: "We proudly serve Mesa, Phoenix, Chandler, Gilbert, Scottsdale, Maricopa, and surrounding areas across Arizona."
@@ -397,4 +401,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}