Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-03-26 04:23:01 +00:00

View File

@@ -3,11 +3,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
@@ -35,6 +37,10 @@ export default function LandingPage() {
name: "About Us", id: "about"},
{
name: "Testimonials", id: "testimonials"},
{
name: "Pricing", id: "pricing"},
{
name: "FAQs", id: "faq"},
{
name: "Contact", id: "contact"},
]}
@@ -142,6 +148,47 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Flexible Pricing Plans"
description="Choose the perfect cleaning plan that fits your lifestyle and needs. Quality service, transparent pricing."
plans={[
{
id: "basic", title: "Basic Home Cleaning", price: "$120", period: "/visit", features: ["Kitchen cleaning", "Bathroom sanitization", "Floor vacuuming/mopping", "Dusting surfaces"],
button: { text: "Select Basic", href: "#contact" }
},
{
id: "premium", title: "Premium Home Cleaning", price: "$180", period: "/visit", features: ["Includes Basic +", "Deep clean bathrooms", "Inside window cleaning", "Cabinet exterior wipe down", "Bed making"],
button: { text: "Select Premium", href: "#contact" }
},
{
id: "elite", title: "Elite Home Cleaning", price: "$250", period: "/visit", features: ["Includes Premium +", "Appliance exterior cleaning", "Wall spot cleaning", "Patio sweep", "Organization assistance"],
button: { text: "Select Elite", href: "#contact" }
}
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Frequently Asked Questions"
description="Have questions about our luxury cleaning services? Find answers to common inquiries below."
faqs={[
{ id: "1", title: "What areas do you serve?", content: "We proudly serve the greater Phoenix, AZ area, including Scottsdale, Paradise Valley, and Tempe." },
{ id: "2", title: "Are your cleaners background-checked?", content: "Yes, all our cleaning professionals undergo thorough background checks and rigorous training to ensure your peace of mind." },
{ id: "3", title: "Do I need to be home during cleaning?", content: "No, you don't need to be home. Many of our clients provide us with access, and we ensure your home is securely locked before we leave." },
{ id: "4", title: "What cleaning products do you use?", content: "We primarily use high-quality, eco-friendly, and non-toxic cleaning products to ensure a safe environment for your family and pets." },
{ id: "5", title: "How do I book a service?", content: "You can easily book a service through our website by filling out a contact form, or by calling us directly at (602) 765-3080." }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
@@ -176,6 +223,10 @@ export default function LandingPage() {
label: "About Us", href: "#about"},
{
label: "Testimonials", href: "#testimonials"},
{
label: "Pricing", href: "#pricing"},
{
label: "FAQs", href: "#faq"},
{
label: "Contact Us", href: "#contact"},
],
@@ -196,4 +247,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}