2 Commits

Author SHA1 Message Date
857e072a5c Update src/app/page.tsx 2026-05-22 23:42:08 +00:00
ced8afda99 Update src/app/page.tsx 2026-05-22 23:41:41 +00:00

View File

@@ -2,174 +2,163 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import AboutMetric from '@/components/sections/about/AboutMetric'; import TextAbout from '@/components/sections/about/TextAbout';
import { Star, ShieldCheck, Users } from "lucide-react"; import { Leaf, ShieldCheck, Sparkles } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="directional-hover" defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="pill" borderRadius="pill"
contentWidth="mediumLarge" contentWidth="medium"
sizing="large" sizing="medium"
background="noiseDiagonalGradient" background="circleGradient"
cardStyle="glass-elevated" cardStyle="glass-elevated"
primaryButtonStyle="gradient" primaryButtonStyle="gradient"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="semibold" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "#about" },
{ name: "Services", id: "features" }, { name: "Features", id: "#features" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "#contact" }
]} ]}
brandName="Cleaning company" brandName="PureClean"
button={{ text: "Get a Quote", href: "#contact" }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardGallery <HeroBillboardTestimonial
title="Premium Cleaning for Modern Spaces" useInvertedBackground={false}
description="Redefining clean with meticulous attention to detail, eco-friendly products, and a professional touch that turns your property into a sanctuary." background={{ variant: "gradient-bars" }}
mediaAnimation="blur-reveal" title="A Spotless Home, Every Single Time"
background={{ variant: "sparkles-gradient" }} description="Experience premium residential and commercial cleaning services designed for your lifestyle. We bring shine and peace of mind back to your space."
mediaItems={[ testimonials={[
{ imageSrc: "http://img.b2bpic.net/free-photo/young-mother-cleaning-shelves-house_23-2148713680.jpg?_wi=1", imageAlt: "Professional Cleaning" }, { name: "Alice D.", handle: "@aliced", testimonial: "The best cleaning service I've ever used. My home was spotless!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-mother-cleaning-shelves-house_23-2148713680.jpg?_wi=1", imageAlt: "Young mother cleaning the shelves in the house" },
{ imageSrc: "http://img.b2bpic.net/free-photo/husband-wife-singing-together-while-cleaning-apartment_482257-71.jpg?_wi=1", imageAlt: "Eco-friendly sanitization" }, { name: "Mark S.", handle: "@marks", testimonial: "Professional, punctual, and incredibly thorough. Highly recommend.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/husband-wife-singing-together-while-cleaning-apartment_482257-71.jpg?_wi=1", imageAlt: "Young mother cleaning the shelves in the house" },
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-working-couch_23-2148751493.jpg?_wi=1", imageAlt: "Detail oriented cleaning" } { name: "Elena R.", handle: "@elenar", testimonial: "Finally found a team I can trust with my property.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-working-couch_23-2148751493.jpg?_wi=1", imageAlt: "Young mother cleaning the shelves in the house" },
{ name: "David W.", handle: "@davidw", testimonial: "Exceptional attention to detail in every room.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg?_wi=1", imageAlt: "Young mother cleaning the shelves in the house" },
{ name: "Sarah P.", handle: "@sarahp", testimonial: "Refreshing clean, lovely professional staff.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-wearing-rubber-gloves-cleaning_1163-2431.jpg?_wi=1", imageAlt: "Young mother cleaning the shelves in the house" }
]} ]}
buttons={[{ text: "Book Now", href: "#contact" }]} buttons={[{ text: "Book Now", href: "#contact" }]}
mediaAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/young-mother-cleaning-shelves-house_23-2148713680.jpg?_wi=2"
imageAlt="Young mother cleaning the shelves in the house"
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<AboutMetric <TextAbout useInvertedBackground={true} title="Dedication to Hygiene and Perfection" tag="Our Mission" />
title="Experience The PureClean Standard"
useInvertedBackground={true}
metricsAnimation="slide-up"
metrics={[
{ icon: Star, label: "Satisfaction Guaranteed", value: "100%" },
{ icon: Users, label: "Expert Team Members", value: "50+" },
{ icon: ShieldCheck, label: "Certified Eco-Safe", value: "Yes" }
]}
/>
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardTwelve <FeatureBento
title="Comprehensive Cleaning Services"
description="Customized solutions designed to meet the unique needs of your home or commercial space."
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ { title: "Eco-Friendly Products", description: "Safe for pets and children.", bentoComponent: "reveal-icon", icon: Leaf },
id: "f1", label: "Residential", title: "Full Home Care", items: ["Kitchen deep clean", "Bathroom sanitization", "Living space dusting", "Window interiors"], { title: "Verified Staff", description: "Background checked professionals.", bentoComponent: "reveal-icon", icon: ShieldCheck },
}, { title: "100% Satisfaction", description: "We don't leave until it's clean.", bentoComponent: "reveal-icon", icon: Sparkles }
{
id: "f2", label: "Commercial", title: "Workspace Hygiene", items: ["Desk disinfection", "Common area cleaning", "Trash removal", "Floor maintenance"],
},
{
id: "f3", label: "Specialized", title: "Move-In / Out", items: ["Full surface scrub", "Cabinet interior cleaning", "Baseboard detailing", "Appliance polish"],
}
]} ]}
title="Why Choose PureClean?"
description="We blend eco-friendly practices with high-standard deep cleaning methods."
/> />
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardEleven <MetricCardTwo
title="Our Performance" animationType="scale-rotate"
description="Trust the stats that define our success."
animationType="blur-reveal"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} gridVariant="bento-grid"
useInvertedBackground={true}
metrics={[ metrics={[
{ id: "m1", value: "15,000", title: "Projects Completed", description: "Consistent excellence since 2010.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-wearing-rubber-gloves-cleaning_1163-2431.jpg" }, { id: "m1", value: "5000+", description: "Happy Clients Served" },
{ id: "m2", value: "4.9/5", title: "Client Rating", description: "Consistently rated by our community.", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-papers-laptop_23-2148751501.jpg" } { id: "m2", value: "12+", description: "Years of Excellence" },
{ id: "m3", value: "99%", description: "Repeat Customers" }
]} ]}
title="Proven Results"
description="Our numbers speak for our dedication to excellence."
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen <TestimonialCardTwelve
title="Hear From Our Clients" useInvertedBackground={false}
description="Join the thousands of happy homeowners and business owners who rely on us." cardAnimation="slide-up"
animationType="scale-rotate" cardTitle="What Our Clients Say"
textboxLayout="split" cardTag="Reviews"
useInvertedBackground={true}
kpiItems={[
{ value: "5k+", label: "Active Clients" },
{ value: "98%", label: "Retention Rate" },
{ value: "12y", label: "In Business" }
]}
testimonials={[ testimonials={[
{ id: "t1", name: "Jane Smith", role: "Homeowner", company: "Local Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-mother-cleaning-shelves-house_23-2148713680.jpg" }, { id: "1", name: "Alice D.", imageSrc: "http://img.b2bpic.net/free-photo/husband-wife-singing-together-while-cleaning-apartment_482257-71.jpg?_wi=2" },
{ id: "t2", name: "Mike Ross", role: "Manager", company: "Tech Hub Inc", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-working-couch_23-2148751493.jpg" } { id: "2", name: "Mark S.", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-couch_23-2148751493.jpg?_wi=2" },
{ id: "3", name: "Elena R.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg?_wi=2" },
{ id: "4", name: "David W.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-wearing-rubber-gloves-cleaning_1163-2431.jpg?_wi=2" },
{ id: "5", name: "Sarah P.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-couple-playing-bed-home-casual-outfit-man-woman-having-fun-together-crazy-positive-emotion-happy-holding-hand-up_285396-867.jpg" }
]} ]}
/> />
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardTwo <PricingCardEight
title="Transparent Pricing" animationType="slide-up"
description="Clear, honest pricing for reliable service packages."
animationType="blur-reveal"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={true}
title="Simple Pricing for Every Home"
description="Transparent plans for your convenience."
plans={[ plans={[
{ id: "p1", badge: "Essential", price: "$149", subtitle: "Quick refresh service", buttons: [{ text: "Choose Plan" }], features: ["Basic dusting", "Vacuuming", "Kitchen surface wipe"] }, { id: "p1", badge: "Standard", price: "$120", subtitle: "Perfect for routine upkeep.", buttons: [{ text: "Book Now" }], features: ["Kitchen", "Bathroom", "Living Room"] },
{ id: "p2", badge: "Premium", price: "$299", subtitle: "Complete deep clean", buttons: [{ text: "Choose Plan" }], features: ["Everything in Essential", "Deep carpet steam", "Interior oven clean", "Inside windows"] } { id: "p2", badge: "Deep Clean", price: "$250", subtitle: "Comprehensive deep cleaning.", buttons: [{ text: "Book Now" }], features: ["Standard + Inside Fridge", "Oven", "Windows"] },
{ id: "p3", badge: "Move-In", price: "$400", subtitle: "Total sanitization package.", buttons: [{ text: "Book Now" }], features: ["Full Home Deep Clean", "Baseboards", "Sanitization"] }
]} ]}
/> />
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitMedia <FaqDouble
title="Frequently Asked Questions"
description="Everything you need to know about our process."
faqsAnimation="slide-up"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
title="Common Questions"
description="Answers to keep your home pristine."
faqsAnimation="slide-up"
faqs={[ faqs={[
{ id: "q1", title: "Are you insured?", content: "Yes, our professional cleaning team is fully insured and bonded for your peace of mind." }, { id: "f1", title: "Do I need to be home?", content: "No, our team is fully insured and reliable." },
{ id: "q2", title: "Can I customize my clean?", content: "Absolutely. We tailor every service package to suit your specific residential or commercial needs." } { id: "f2", title: "Are cleaning supplies provided?", content: "Yes, we bring premium eco-friendly supplies." },
{ id: "f3", title: "Can I cancel my booking?", content: "Cancellation is free with 24 hours notice." }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/man-woman-putting-rubber-gloves_23-2147766988.jpg"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCenter
text="Ready to transform your environment into a pristine space?" useInvertedBackground={true}
background={{ variant: "gradient-bars" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false} tag="Booking"
buttons={[{ text: "Request a quote", href: "#contact" }]} title="Schedule Your Clean"
description="Get in touch today to transform your living space."
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterBaseReveal
logoText="PureClean"
columns={[ columns={[
{ title: "Company", items: [{ label: "About" }, { label: "Careers" }] }, { title: "Services", items: [{ label: "Residential", href: "#" }, { label: "Commercial", href: "#" }] },
{ title: "Services", items: [{ label: "Residential" }, { label: "Commercial" }] } { title: "Support", items: [{ label: "Contact Us", href: "#contact" }, { label: "FAQ", href: "#" }] }
]} ]}
bottomLeftText="© 2024 Cleaning company"
bottomRightText="Terms of Service | Privacy Policy"
/> />
</div> </div>
</ReactLenis> </ReactLenis>