8 Commits

Author SHA1 Message Date
525db5837c Update src/app/page.tsx 2026-05-13 14:59:20 +00:00
c0f220a672 Update src/app/page.tsx 2026-05-13 14:57:54 +00:00
904773b5cf Update src/app/page.tsx 2026-05-13 14:57:25 +00:00
b4ecb0727f Update src/app/page.tsx 2026-05-13 14:56:52 +00:00
faba295d0b Merge version_3 into main
Merge version_3 into main
2026-05-13 14:54:03 +00:00
ffbcb774cf Update src/app/page.tsx 2026-05-13 14:54:00 +00:00
8ac5cb82bd Merge version_2 into main
Merge version_2 into main
2026-05-13 14:39:04 +00:00
e329879e31 Merge version_2 into main
Merge version_2 into main
2026-05-13 14:38:28 +00:00

View File

@@ -3,7 +3,8 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
@@ -33,12 +34,23 @@ export default function SalPlumbingPage() {
]}
/>
<div id="hero">
<HeroOverlay
<HeroBillboard
title="Expert Plumbing & Heating Services"
description="Reliable, professional, and affordable plumbing solutions for your home. From water heater repairs to emergency leaks, Sal's has you covered."
buttons={[{ text: "Book Now", href: "#contact" }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DfpSjlma8xN5ZgeOX4QBcDQpqr/uploaded-1778683562615-goxv8259.jpg"
imageAlt="Professional plumbing technician"
background={{ variant: "plain" }}
/>
<HeroBillboardCarousel
title="Our Work in Action"
description="Take a look at the quality craftsmanship we bring to every job."
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DfpSjlma8xN5ZgeOX4QBcDQpqr/uploaded-1778683562615-goxv8259.jpg", imageAlt: "Work 1" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1", imageAlt: "Work 2" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp?_wi=1", imageAlt: "Work 3" }
]}
background={{ variant: "plain" }}
/>
</div>
<div id="services">
@@ -50,15 +62,9 @@ export default function SalPlumbingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "Water Heater Repair", description: "Efficient diagnostics and repair for gas or electric water heaters.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", titleImageSrc: "", buttonText: "Get Service"
},
{
title: "Emergency Plumbing", description: "24/7 support for burst pipes and urgent leaks.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", titleImageSrc: "", buttonText: "Call Us"
},
{
title: "Heating Systems", description: "Professional boiler maintenance and furnace repairs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", titleImageSrc: "", buttonText: "Schedule"
}
{ title: "Water Heater Repair", description: "Efficient diagnostics and repair for gas or electric water heaters.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=2", titleImageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", buttonText: "Learn More" },
{ title: "Emergency Plumbing", description: "24/7 support for burst pipes and urgent leaks.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp?_wi=2", titleImageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", buttonText: "Learn More" },
{ title: "Heating Systems", description: "Professional boiler maintenance and furnace repairs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", titleImageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", buttonText: "Learn More" }
]}
/>
</div>