7 Commits

Author SHA1 Message Date
b00a5d79d4 Update src/app/styles/variables.css 2026-04-05 12:17:43 +00:00
82c7344aac Update src/app/page.tsx 2026-04-05 12:17:42 +00:00
188341e44b Merge version_1 into main
Merge version_1 into main
2026-04-05 12:16:43 +00:00
7c0d5cf60e Merge version_1 into main
Merge version_1 into main
2026-04-05 12:16:39 +00:00
61d4f86e06 Merge version_1 into main
Merge version_1 into main
2026-04-05 12:12:54 +00:00
d47c18c1a9 Merge version_1 into main
Merge version_1 into main
2026-04-05 12:12:31 +00:00
1ab69ec2aa Merge version_1 into main
Merge version_1 into main
2026-04-05 12:12:02 +00:00
2 changed files with 45 additions and 49 deletions

View File

@@ -3,12 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric'; import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Award, Clock, Phone, Shield } from "lucide-react"; import { Award, Clock, Phone, Shield } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -108,52 +108,48 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSix <TestimonialCardFifteen
animationType="slide-up" testimonial="Fantastic service and quick resolution to my leak problem. Expert technicians who left my home spotless."
textboxLayout="default" rating={5}
useInvertedBackground={true} author="Jy W."
description="Our clients trust us for fast, professional service." avatars={[{ src: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=1", alt: "Customer" }]}
testimonials={[ ratingAnimation="slide-up"
{ avatarsAnimation="slide-up"
id: "t1", name: "Jy W.", handle: "Verified Customer", testimonial: "Texted them in the morning and the problem was fixed in the afternoon within one hour. Very efficient.", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=1"}, useInvertedBackground={true}
{ />
id: "t2", name: "Sam Tay", handle: "Verified Customer", testimonial: "Very professionally done! Friendly service and on time! Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg?_wi=1"},
{
id: "t3", name: "Kevin Tan", handle: "Verified Customer", testimonial: "Quality and professionalism were both excellent. Would definitely use again for any plumbing needs.", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=2"},
{
id: "t4", name: "Jy W.", handle: "Verified Customer", testimonial: "Fantastic service and quick resolution to my leak problem. Expert technicians.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg?_wi=2"},
{
id: "t5", name: "Sam Tay", handle: "Verified Customer", testimonial: "The best plumbing service in Bedok. Fast, reliable, and professional.", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=3"},
]}
title="What Our Clients Say"
/>
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCenter
useInvertedBackground={false} tag="Need Help?"
background={{ title="Quick Response for Every Emergency"
variant: "gradient-bars"}} description="Don't let a small leak turn into a costly nightmare. Our team is ready to assist you right now."
text="Let us solve your plumbing problem. Reach out today for urgent assistance or to schedule a service." background={{ variant: "gradient-bars" }}
buttons={[ useInvertedBackground={false}
{ />
text: "Call Now", href: "tel:64491138"},
]}
/>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterLogoEmphasis
logoText="Benji Plumbing & Sanitaryware" logoText="Benji Plumbing & Sanitaryware"
copyrightText="© 2025 Benji Plumbing. All rights reserved." columns={[
socialLinks={[ {
{ items: [
icon: Phone, { label: "Our Services", href: "#services" },
href: "tel:64491138", ariaLabel: "Call us"}, { label: "Why Choose Us", href: "#why" },
]} { label: "Customer Reviews", href: "#testimonials" },
/> ]
},
{
items: [
{ label: "Contact Us", href: "#contact" },
{ label: "Call Support", href: "tel:64491138" },
]
}
]}
/>
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f6f0e9; --background: #ffffff;
--card: #efe7dd; --card: #f9f9f9;
--foreground: #2b180a; --foreground: #000612e6;
--primary-cta: #2b180a; --primary-cta: #106EFB;
--primary-cta-text: #f6f0e9; --primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd; --secondary-cta: #f9f9f9;
--secondary-cta-text: #2b180a; --secondary-cta-text: #2b180a;
--accent: #94877c; --accent: #e2e2e2;
--background-accent: #afa094; --background-accent: #106EFB;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);