259 lines
15 KiB
TypeScript
259 lines
15 KiB
TypeScript
"use client"
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
|
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="medium"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="grid"
|
|
cardStyle="glass-depth"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{ name: "Services", id: "services" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Pricing", id: "pricing" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
brandName="Signature Maids"
|
|
bottomLeftText="Premium Home Cleaning"
|
|
bottomRightText="hello@signaturemaids.com"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardScroll
|
|
title="Pristine Homes, Exceptional Service"
|
|
description="Experience the difference of premium home cleaning. Our expert team delivers meticulous attention to detail, reliability you can trust, and a spotless home every time."
|
|
tag="Professional Home Cleaning"
|
|
background={{ variant: "gradient-bars" }}
|
|
imageSrc="http://img.b2bpic.net/free-photo/smiling-chambermaid-placing-water-bottle-table-hotel-room_23-2148033271.jpg"
|
|
imageAlt="Professional cleaning team at work"
|
|
buttons={[
|
|
{ text: "Book Your Cleaning", href: "contact" },
|
|
{ text: "Learn More", href: "services" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardSix
|
|
title="Our Premium Services"
|
|
description="Tailored cleaning solutions designed to exceed your expectations and maintain your home's pristine condition."
|
|
tag="Services"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
id: 1,
|
|
title: "Deep Clean Service", description: "Comprehensive cleaning targeting every corner, baseboards, and hard-to-reach areas. Perfect for seasonal refreshes and move-in preparations.", imageSrc: "http://img.b2bpic.net/free-photo/young-mother-cleaning-shelves-house_23-2148713680.jpg", imageAlt: "Deep cleaning service in action"
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "Regular Maintenance", description: "Weekly or bi-weekly scheduled cleanings to keep your home consistently fresh, tidy, and welcoming year-round.", imageSrc: "http://img.b2bpic.net/free-photo/active-retirement-senior-woman-working-legs-muscle-using-cycling-bicycle-machine_482257-10533.jpg", imageAlt: "Regular maintenance cleaning service"
|
|
},
|
|
{
|
|
id: 3,
|
|
title: "Move-Out Cleaning", description: "Thorough end-of-lease cleaning ensuring every surface sparkles and meets landlord requirements for deposit returns.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-woman-playing-mop-as-guitar-standing-house-near-sofa_23-2148222240.jpg", imageAlt: "Move-out cleaning service"
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<MetricSplitMediaAbout
|
|
tag="About Us"
|
|
title="Quality, Trust, and Excellence in Every Clean"
|
|
description="Signature Maids has been serving homeowners with premium cleaning services for over a decade. Our commitment to exceptional quality, customer satisfaction, and sustainable practices sets us apart. We believe a clean home is a happy home, and we're dedicated to providing the highest standards of service."
|
|
metrics={[
|
|
{ value: "2000+", title: "Happy Clients" },
|
|
{ value: "10+", title: "Years of Service" }
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/excited-man-casual-clothes-keeping-hands-crossed-holding-dirty-sponge-rejoicing-his-work-smiling-woman-wearing-yellow-headband-white-t-shirt-holding-detergent-sponge-washing-windows_273609-7837.jpg"
|
|
imageAlt="Our professional cleaning team"
|
|
useInvertedBackground={false}
|
|
mediaAnimation="slide-up"
|
|
metricsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="socialProof" data-section="socialProof">
|
|
<SocialProofOne
|
|
title="Trusted by Homeowners Across the Region"
|
|
description="Join thousands of satisfied customers who have made Signature Maids their home cleaning partner."
|
|
tag="Trusted Partners"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
names={[
|
|
"Residential Homeowners", "Property Managers", "Real Estate Agents", "Corporate Offices", "Vacation Rentals", "HOA Communities", "Luxury Estates", "Family Homes"
|
|
]}
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSix
|
|
title="What Our Clients Say"
|
|
description="Real testimonials from satisfied customers who trust Signature Maids with their homes."
|
|
tag="Client Reviews"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "Signature Maids transformed my home. The attention to detail is incredible—every corner is spotless. I've been using their service for three years now and couldn't be happier.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "Sarah Mitchell"
|
|
},
|
|
{
|
|
id: "2", name: "James Rodriguez", handle: "@jrodriguez", testimonial: "Professional, reliable, and thorough. They always arrive on time, complete the work efficiently, and my house looks amazing every single time.", imageSrc: "http://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167457.jpg", imageAlt: "James Rodriguez"
|
|
},
|
|
{
|
|
id: "3", name: "Emily Chen", handle: "@emilychen", testimonial: "As a busy working mom, Signature Maids has been a lifesaver. I trust them completely with my home. The team is friendly, efficient, and genuinely cares about quality.", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-i-letter_1149-1837.jpg", imageAlt: "Emily Chen"
|
|
},
|
|
{
|
|
id: "4", name: "Michael Thompson", handle: "@mthompson", testimonial: "I've hired several cleaning services before, but Signature Maids is in a league of their own. Premium service at a fair price. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman_1098-14693.jpg", imageAlt: "Michael Thompson"
|
|
},
|
|
{
|
|
id: "5", name: "Patricia Anderson", handle: "@panderson", testimonial: "Outstanding service from start to finish. They handle all the details I don't have time for, and my home has never looked better. Five stars!", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-blonde-woman-wearing-casual-shirt-standing-isolated-white-background-with-happy-cool-smile-face-lucky-person_839833-25329.jpg", imageAlt: "Patricia Anderson"
|
|
},
|
|
{
|
|
id: "6", name: "David Wilson", handle: "@dwilson", testimonial: "Consistent quality, professional team, and exceptional customer service. Signature Maids is the only cleaning service I'll ever use.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoors-successful-business-person_23-2148763862.jpg", imageAlt: "David Wilson"
|
|
}
|
|
]}
|
|
speed={40}
|
|
topMarqueeDirection="left"
|
|
/>
|
|
</div>
|
|
|
|
<div id="pricing" data-section="pricing">
|
|
<PricingCardNine
|
|
title="Simple, Transparent Pricing"
|
|
description="Choose the perfect plan for your home cleaning needs. All services include our satisfaction guarantee."
|
|
tag="Pricing"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
plans={[
|
|
{
|
|
id: "standard", title: "Standard Clean", price: "$149", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-rubber-gloves-holding-basket-cleaning-products_23-2148464979.jpg", imageAlt: "Standard cleaning service", button: { text: "Book Standard", href: "contact" }, features: [
|
|
"All main living areas", "Bathrooms and kitchen", "Vacuuming and mopping", "Dusting and surfaces"
|
|
]
|
|
},
|
|
{
|
|
id: "premium", title: "Premium Clean", price: "$199", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-walking-with-cleaning-cart_23-2149345543.jpg", imageAlt: "Premium cleaning service", button: { text: "Book Premium", href: "contact" }, features: [
|
|
"Everything in Standard", "Deep baseboards", "Inside appliances", "Window interiors", "Detailed attention to detail"
|
|
]
|
|
},
|
|
{
|
|
id: "deluxe", title: "Deluxe White Glove", price: "$249", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/housewife-woking-home_1157-45521.jpg", imageAlt: "Deluxe white glove service", button: { text: "Book Deluxe", href: "contact" }, features: [
|
|
"Everything in Premium", "Exterior windows", "Wall spots and marks", "Ceiling fans and fixtures", "Organization assistance"
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqBase
|
|
title="Frequently Asked Questions"
|
|
description="Find answers to common questions about our cleaning services and booking process."
|
|
tag="FAQ"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
faqsAnimation="slide-up"
|
|
faqs={[
|
|
{
|
|
id: "1", title: "How do I book a cleaning service?", content: "Simply click the 'Book Your Cleaning' button or fill out our contact form. We'll respond within 24 hours to confirm your appointment and discuss your specific cleaning needs."
|
|
},
|
|
{
|
|
id: "2", title: "Are you insured and bonded?", content: "Yes, Signature Maids is fully insured and bonded. All our team members are background-checked for your peace of mind and safety."
|
|
},
|
|
{
|
|
id: "3", title: "What if I'm not satisfied with the cleaning?", content: "We stand behind our work 100%. If you're not completely satisfied, contact us within 24 hours and we'll return to address your concerns at no additional charge."
|
|
},
|
|
{
|
|
id: "4", title: "Do you use eco-friendly products?", content: "We offer both traditional and eco-friendly cleaning options. Let us know your preference when booking, and we'll accommodate your needs."
|
|
},
|
|
{
|
|
id: "5", title: "Can I schedule recurring cleanings?", content: "Absolutely! We offer weekly, bi-weekly, and monthly recurring cleaning schedules with special pricing for regular customers."
|
|
},
|
|
{
|
|
id: "6", title: "What areas do you service?", content: "Signature Maids services the greater metropolitan area and surrounding suburbs. Contact us to confirm service availability for your location."
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Get Started"
|
|
title="Ready for a Cleaner Home?"
|
|
description="Join hundreds of satisfied customers. Book your cleaning appointment today and experience the Signature Maids difference."
|
|
background={{ variant: "rotated-rays-animated" }}
|
|
useInvertedBackground={false}
|
|
inputPlaceholder="Enter your email"
|
|
buttonText="Schedule Now"
|
|
termsText="We'll contact you within 24 hours to confirm your appointment and discuss your cleaning preferences."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="Signature Maids"
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Deep Cleaning", href: "#services" },
|
|
{ label: "Regular Maintenance", href: "#services" },
|
|
{ label: "Move-Out Cleaning", href: "#services" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Testimonials", href: "#testimonials" },
|
|
{ label: "Pricing", href: "#pricing" }
|
|
]
|
|
},
|
|
{
|
|
title: "Support", items: [
|
|
{ label: "FAQ", href: "#faq" },
|
|
{ label: "Contact Us", href: "#contact" },
|
|
{ label: "Book Now", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Satisfaction Guarantee", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
copyrightText="© 2025 Signature Maids. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|