227 lines
12 KiB
TypeScript
227 lines
12 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
import { Building, Car, CheckCircle, Droplets, Home, Sun } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="small"
|
|
sizing="medium"
|
|
background="aurora"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
navItems={[
|
|
{
|
|
name: "Home", id: "hero"},
|
|
{
|
|
name: "Services", id: "services"},
|
|
{
|
|
name: "About Us", id: "about"},
|
|
{
|
|
name: "Testimonials", id: "testimonials"},
|
|
{
|
|
name: "FAQ", id: "faq"},
|
|
{
|
|
name: "Contact", id: "contact"},
|
|
]}
|
|
brandName="Bradley Pressure Washing"
|
|
button={{
|
|
text: "Get a Free Quote", href: "#contact"}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardCarousel
|
|
background={{
|
|
variant: "sparkles-gradient"}}
|
|
title="Experience the Bradley Pressure Washing Difference"
|
|
description="Professional pressure washing for homes and businesses. We revitalize your property's appearance with efficient, reliable, and thorough cleaning services. Get your free estimate today!"
|
|
buttons={[
|
|
{
|
|
text: "Get a Free Quote", href: "#contact"},
|
|
{
|
|
text: "Our Services", href: "#services"},
|
|
]}
|
|
mediaItems={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150359015.jpg", imageAlt: "Cleaned house exterior"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/autumn-red-leaves-stone-wall-climbing-vine-plants_1372-42.jpg", imageAlt: "Cleaned driveway"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/bike-shop-with-shop-assistant_23-2148138819.jpg", imageAlt: "Cleaned wooden deck"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552285.jpg", imageAlt: "House washing service in action"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/focused-senior-male-worker-using-big-rake-gather-fallen-leaves-pile-front-view-bearded-man_7502-10268.jpg", imageAlt: "Driveway cleaning service in action"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/female-person-feeling-tired-after-finishing-spring-cleaning-sitting-clean-wooden-floor-with-mop-gloves-young-sleepy-woman-being-proud-tidy-apartment-household-chores-finished_482257-59836.jpg", imageAlt: "Deck and patio cleaning service in action"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TextAbout
|
|
useInvertedBackground={false}
|
|
tag="About Us"
|
|
title="Your Trusted Partner for a Pristine Property"
|
|
buttons={[
|
|
{
|
|
text: "Meet Our Team", href: "#"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureHoverPattern
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{
|
|
icon: Home,
|
|
title: "House Washing", description: "Gentle yet effective cleaning for all exterior surfaces, removing dirt, grime, and mildew without damage."},
|
|
{
|
|
icon: Car,
|
|
title: "Driveway & Sidewalk Cleaning", description: "Restore your concrete, asphalt, or paver surfaces, eliminating oil stains, dirt buildup, and discoloration."},
|
|
{
|
|
icon: Droplets,
|
|
title: "Roof Cleaning", description: "Soft wash treatment to safely remove moss, algae, and lichen, extending your roof's lifespan and improving curb appeal."},
|
|
{
|
|
icon: Sun,
|
|
title: "Deck & Patio Restoration", description: "Bring your outdoor living spaces back to life, cleaning wood, composite, and stone decks and patios."},
|
|
{
|
|
icon: Building,
|
|
title: "Commercial Pressure Washing", description: "Maintain a professional image for your business with our tailored cleaning services for storefronts, parking lots, and more."},
|
|
{
|
|
icon: CheckCircle,
|
|
title: "Fence Cleaning", description: "Revitalize your fences, removing dirt, mold, and weathered appearances to enhance your property's perimeter."},
|
|
]}
|
|
title="Comprehensive Pressure Washing Solutions"
|
|
description="From delicate surfaces to tough stains, our experienced team handles it all with precision and care. Explore our range of services designed to make your property shine."
|
|
tag="Our Expertise"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSix
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Sarah J.", handle: "@homeowner", testimonial: "Bradley Pressure Washing transformed my home! The siding looks brand new, and the driveway has never been cleaner. Highly recommend their meticulous work!", imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-young-male-student-with-afro-hairstyle-trendy-clothes-sitting-park-while-smiling-broadly-drinking-coffee_176420-19802.jpg"},
|
|
{
|
|
id: "2", name: "Michael D.", handle: "@localbusiness", testimonial: "Our business entrance was grimy, but Bradley Pressure Washing made it spotless. Their team was professional and efficient. Fantastic service!", imageSrc: "http://img.b2bpic.net/free-photo/side-view-family-celebrating-birthday-together_23-2150598987.jpg"},
|
|
{
|
|
id: "3", name: "Emily R.", handle: "@satisfiedclient", testimonial: "They did an incredible job on our deck and patio. It looks amazing and is ready for summer entertaining. So pleased with the results!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-adult-woman-smiling_23-2148729684.jpg"},
|
|
{
|
|
id: "4", name: "David K.", handle: "@propertyowner", testimonial: "Professional, punctual, and polite. My roof looks fantastic after their soft wash. Bradley Pressure Washing truly cares about quality.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-work_23-2149741200.jpg"},
|
|
{
|
|
id: "5", name: "Jessica L.", handle: "@neighborhoodresident", testimonial: "I was hesitant about pressure washing my older home, but Bradley's team was incredibly careful and the results exceeded my expectations. My house sparkles!", imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-cute-young-business-woman-smiling_93675-133169.jpg"},
|
|
]}
|
|
title="Hear From Our Happy Clients"
|
|
description="Our customers consistently praise our professionalism, thoroughness, and amazing results. See what they have to say!"
|
|
tag="Customer Stories"
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitText
|
|
useInvertedBackground={true}
|
|
faqs={[
|
|
{
|
|
id: "faq-1", title: "What is the difference between pressure washing and soft washing?", content: "Pressure washing uses high-pressure water to remove dirt and grime, ideal for durable surfaces like concrete. Soft washing uses low-pressure water combined with cleaning solutions for more delicate surfaces like siding and roofs, preventing damage."},
|
|
{
|
|
id: "faq-2", title: "Is pressure washing safe for all surfaces?", content: "No, not all surfaces are suitable for high-pressure washing. Our experts assess each surface to determine the appropriate cleaning method, ensuring safety and optimal results. We use soft washing for delicate materials."},
|
|
{
|
|
id: "faq-3", title: "How often should I have my property pressure washed?", content: "The frequency depends on factors like your local climate, pollution levels, and surrounding vegetation. Generally, we recommend a professional cleaning every 1-2 years to maintain your property's appearance and prevent buildup."},
|
|
{
|
|
id: "faq-4", title: "Do I need to be home during the service?", content: "You do not need to be home for us to perform the service, as long as we have access to the areas needing cleaning and a water source. We'll communicate with you before, during, and after the job."},
|
|
]}
|
|
sideTitle="Frequently Asked Questions"
|
|
sideDescription="Have questions about our pressure washing services? We've got answers! If you don't find what you're looking for, feel free to contact us directly."
|
|
faqsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "radial-gradient"}}
|
|
text="Ready for a sparkling clean property? Contact Bradley Pressure Washing today for a free estimate!"
|
|
buttons={[
|
|
{
|
|
text: "Call Us Now", href: "tel:+1234567890"},
|
|
{
|
|
text: "Email Us", href: "mailto:info@bradleypressurewashing.com"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{
|
|
label: "House Washing", href: "#services"},
|
|
{
|
|
label: "Driveway Cleaning", href: "#services"},
|
|
{
|
|
label: "Roof Cleaning", href: "#services"},
|
|
{
|
|
label: "Deck & Patio", href: "#services"},
|
|
{
|
|
label: "Commercial", href: "#services"},
|
|
],
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{
|
|
label: "About Us", href: "#about"},
|
|
{
|
|
label: "Testimonials", href: "#testimonials"},
|
|
{
|
|
label: "FAQ", href: "#faq"},
|
|
],
|
|
},
|
|
{
|
|
title: "Contact", items: [
|
|
{
|
|
label: "Get a Free Quote", href: "#contact"},
|
|
{
|
|
label: "Email Us", href: "mailto:info@bradleypressurewashing.com"},
|
|
{
|
|
label: "Call Us", href: "tel:+1234567890"},
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2024 Bradley Pressure Washing. All rights reserved."
|
|
bottomRightText="Made with care by Webuild"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|