5 Commits

Author SHA1 Message Date
b586505984 Update src/app/page.tsx 2026-05-07 12:03:13 +00:00
7cca11e7ba Update src/app/page.tsx 2026-05-07 12:02:45 +00:00
df0b948352 Merge version_1 into main
Merge version_1 into main
2026-05-07 12:00:13 +00:00
5d7045ae6c Merge version_1 into main
Merge version_1 into main
2026-05-07 11:59:39 +00:00
7f454c9f6c Merge version_1 into main
Merge version_1 into main
2026-05-07 11:59:11 +00:00

View File

@@ -2,11 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { Zap, Droplets, Thermometer, Shield } from "lucide-react"; import { Zap, Droplets, Thermometer, Shield, CheckCircle, Clock, Award, Star } from "lucide-react";
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
@@ -94,9 +94,20 @@ export default function LandingPage() {
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <SplitAbout
heading={[{ type: "text", content: "About Our Team" }]} title="Committed to Excellence"
description="With over 20 years of experience, our team of licensed professionals is dedicated to solving your plumbing needs quickly and effectively. We stand behind our work with a 100% satisfaction guarantee."
tag="Our Promise"
tagIcon={Award}
textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/plumber-checking-pipes-house_23-2148810793.jpg"
imagePosition="right"
bulletPoints={[
{ title: "Certified Technicians", description: "All our staff are fully licensed and insured.", icon: CheckCircle },
{ title: "Rapid Response", description: "Same-day service for all your plumbing emergencies.", icon: Clock },
{ title: "Transparent Pricing", description: "Upfront, honest estimates with no hidden fees.", icon: Star }
]}
/> />
</div> </div>
@@ -113,4 +124,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }