8 Commits

Author SHA1 Message Date
4a420ba5a8 Merge version_2 into main
Merge version_2 into main
2026-03-03 14:58:03 +00:00
51ee082a6c Update src/app/page.tsx 2026-03-03 14:57:58 +00:00
55cd933bae Merge version_2 into main
Merge version_2 into main
2026-03-03 14:57:18 +00:00
50c792f202 Update src/app/page.tsx 2026-03-03 14:57:12 +00:00
0b624f0465 Update src/app/layout.tsx 2026-03-03 14:57:11 +00:00
d786b861c1 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:55:49 +00:00
543c4469b8 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:53:11 +00:00
442fdf4a3c Merge version_1 into main
Merge version_1 into main
2026-03-03 14:51:47 +00:00
2 changed files with 14 additions and 11 deletions

View File

@@ -1401,4 +1401,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -17,10 +17,10 @@ import { Zap, Home, Wrench, Clock, CheckCircle, Flame, Shield, Building2, Dollar
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
{ name: "Services", id: "services" },
{ name: "Reviews", id: "testimonials" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "cta-section" },
];
return (
@@ -62,7 +62,7 @@ export default function HomePage() {
ratingText="5.0 Rating - 29 Reviews"
buttons={[
{ text: "Call Now: 469-410-2657", href: "tel:469-410-2657" },
{ text: "Request Free Estimate", href: "/contact" },
{ text: "Request Free Estimate", href: "#cta-section" },
]}
buttonAnimation="slide-up"
/>
@@ -77,7 +77,7 @@ export default function HomePage() {
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-female-male-plumbers-keep-hand-as-pray_273609-8786.jpg?_wi=1"
imageAlt="Dynamite Plumbing professional team"
buttons={[{ text: "Learn Our Story", href: "/about" }]}
buttons={[{ text: "Learn Our Story", href: "#why-choose-us" }]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
@@ -115,7 +115,10 @@ export default function HomePage() {
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
buttons={[{ text: "Explore Services", href: "/services" }]}
buttons={[
{ text: "Explore Services", href: "#services" },
{ text: "Get Free Estimate", href: "#cta-section" },
]}
buttonAnimation="slide-up"
/>
</div>
@@ -199,10 +202,10 @@ export default function HomePage() {
faqs={[
{ id: "1", title: "What areas do you serve?", content: "We proudly serve Greenville, Commerce, Quinlan, Royse City, and all surrounding areas in Hunt County, Texas." },
{ id: "2", title: "How quickly can you respond?", content: "For emergency calls, we typically respond within 30 minutes. For scheduled appointments, we work around your availability with flexible scheduling." },
{ id: "3", title: "Do you guarantee your work?", content: "Yes. We stand behind every job with a 100% satisfaction guarantee. If you're not happy, we'll make it right." },
{ id: "3", title: "Do you guarantee your work?", content: "Yes. We stand behind every job with a 100% satisfaction guarantee. If you are not happy, we will make it right." },
]}
ctaTitle="Ready to Get Your Plumbing Fixed?"
ctaDescription="Call now for immediate assistance or schedule your free estimate. We're here to help."
ctaDescription="Call now for immediate assistance or schedule your free estimate. We are here to help."
ctaButton={{ text: "Call 469-410-2657", href: "tel:469-410-2657" }}
ctaIcon={Phone}
useInvertedBackground={true}
@@ -224,4 +227,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}