Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-29 22:48:52 +00:00

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextAbout from '@/components/sections/about/TextAbout';
import { Phone, Shield, Sparkles, Zap } from "lucide-react";
import { Shield, Sparkles, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,16 +30,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "hero"},
{
name: "About", id: "about"},
{
name: "Services", id: "features"},
{
name: "Pricing", id: "pricing"},
{
name: "Contact", id: "contact"},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="Darions Domestic Cleaning"
/>
@@ -50,10 +45,8 @@ export default function LandingPage() {
title="A Spotless Home, Every Single Time"
description="Darions Domestic Cleaning provides premium, reliable housekeeping services for busy professionals and families. Experience the difference of a truly clean home."
buttons={[
{
text: "Get an Estimate", href: "#pricing"},
{
text: "Book Now", href: "#contact"},
{ text: "Get an Estimate", href: "#pricing" },
{ text: "Book Now", href: "#contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/brown-sofa-white-living-room-with-copy-space_43614-886.jpg?_wi=1"
imageAlt="Professional cleaning service in a bright modern home"
@@ -64,10 +57,7 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Your Trusted Partner in Domestic Care"
buttons={[
{
text: "Learn More", href: "#"},
]}
buttons={[{ text: "Learn More", href: "#" }]}
/>
</div>
@@ -78,34 +68,16 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "f1", title: "Kitchen Deep Clean", description: "Grease removal, appliance sanitization, and surface polishing.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/man-servant-cleaning-house_23-2149587672.jpg"},
items: [
{
icon: Sparkles,
text: "Eco-friendly products"},
],
reverse: false
id: "f1", title: "Kitchen Deep Clean", description: "Grease removal, appliance sanitization, and surface polishing.", media: { imageSrc: "http://img.b2bpic.net/free-photo/man-servant-cleaning-house_23-2149587672.jpg" },
items: [{ icon: Sparkles, text: "Eco-friendly products" }], reverse: false
},
{
id: "f2", title: "Bathroom Sanitation", description: "Tile scrubbing, fixture polishing, and complete disinfection.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-eco-cleaning-products-with-lemon-baking-soda_23-2148818424.jpg"},
items: [
{
icon: Shield,
text: "Anti-bacterial care"},
],
reverse: true
id: "f2", title: "Bathroom Sanitation", description: "Tile scrubbing, fixture polishing, and complete disinfection.", media: { imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-eco-cleaning-products-with-lemon-baking-soda_23-2148818424.jpg" },
items: [{ icon: Shield, text: "Anti-bacterial care" }], reverse: true
},
{
id: "f3", title: "Living Area Maintenance", description: "Dusting, vacuuming, and general organizing for maximum comfort.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/freshly-grown-organic-fresh-orange-juice-interior-house-with-turquoise-blanket-basket-fruit_169016-1539.jpg"},
items: [
{
icon: Zap,
text: "Attention to detail"},
],
reverse: false
id: "f3", title: "Living Area Maintenance", description: "Dusting, vacuuming, and general organizing for maximum comfort.", media: { imageSrc: "http://img.b2bpic.net/free-photo/freshly-grown-organic-fresh-orange-juice-interior-house-with-turquoise-blanket-basket-fruit_169016-1539.jpg" },
items: [{ icon: Zap, text: "Attention to detail" }], reverse: false
},
]}
title="Our Specialized Cleaning Services"
@@ -120,28 +92,16 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{
id: "p1", badge: "Essential", price: "$120", subtitle: "For apartments & small homes", features: [
"Kitchen cleaning", "Bathroom surface", "Living room dusting"],
buttons: [
{
text: "Book Basic"},
],
id: "p1", badge: "Essential", price: "$120", subtitle: "For apartments & small homes", features: ["Kitchen cleaning", "Bathroom surface", "Living room dusting"],
buttons: [{ text: "Book Basic" }],
},
{
id: "p2", badge: "Thorough", price: "$250", subtitle: "For family houses", features: [
"Everything in Essential", "Interior windows", "Baseboard scrubbing"],
buttons: [
{
text: "Book Popular"},
],
id: "p2", badge: "Thorough", price: "$250", subtitle: "For family houses", features: ["Everything in Essential", "Interior windows", "Baseboard scrubbing"],
buttons: [{ text: "Book Popular" }],
},
{
id: "p3", badge: "Premium", price: "$400", subtitle: "Deep seasonal clean", features: [
"Everything in Thorough", "Oven deep clean", "Fridge deep clean"],
buttons: [
{
text: "Book Premium"},
],
id: "p3", badge: "Premium", price: "$400", subtitle: "Deep seasonal clean", features: ["Everything in Thorough", "Oven deep clean", "Fridge deep clean"],
buttons: [{ text: "Book Premium" }],
},
]}
title="Clear & Transparent Pricing"
@@ -155,16 +115,11 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "Darions cleaning service is impeccable. Everything is spotless.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-is-pointing-right-with-forefinger-white-background_176474-115343.jpg?_wi=1"},
{
id: "2", name: "Michael K.", handle: "@mikek", testimonial: "The most reliable service I have used for my apartment.", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-their-financial-advisor-using-touchpad-meeting-home-focus-is-man-wheelchair_637285-3066.jpg"},
{
id: "3", name: "Emily R.", handle: "@emilyr", testimonial: "Professional, punctual, and highly detailed work.", imageSrc: "http://img.b2bpic.net/free-photo/man-servant-doing-chores-around-house_23-2149508159.jpg"},
{
id: "4", name: "David W.", handle: "@davidw", testimonial: "Highly recommend Darion for anyone needing a deep clean.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-cleaning-furniture_1398-5024.jpg"},
{
id: "5", name: "Jessica L.", handle: "@jessl", testimonial: "They made our home look brand new again. Simply the best.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-is-pointing-right-with-forefinger-white-background_176474-115343.jpg?_wi=2"},
{ id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "Darions cleaning service is impeccable. Everything is spotless.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-is-pointing-right-with-forefinger-white-background_176474-115343.jpg?_wi=1" },
{ id: "2", name: "Michael K.", handle: "@mikek", testimonial: "The most reliable service I have used for my apartment.", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-their-financial-advisor-using-touchpad-meeting-home-focus-is-man-wheelchair_637285-3066.jpg" },
{ id: "3", name: "Emily R.", handle: "@emilyr", testimonial: "Professional, punctual, and highly detailed work.", imageSrc: "http://img.b2bpic.net/free-photo/man-servant-doing-chores-around-house_23-2149508159.jpg" },
{ id: "4", name: "David W.", handle: "@davidw", testimonial: "Highly recommend Darion for anyone needing a deep clean.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-cleaning-furniture_1398-5024.jpg" },
{ id: "5", name: "Jessica L.", handle: "@jessl", testimonial: "They made our home look brand new again. Simply the best.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-is-pointing-right-with-forefinger-white-background_176474-115343.jpg?_wi=2" },
]}
title="What Our Clients Say"
description="Trusted by hundreds of local families for professional cleaning results."
@@ -172,50 +127,28 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactFaq
animationType="slide-up"
useInvertedBackground={false}
faqs={[
{
id: "q1", title: "Do you bring your own equipment?", content: "Yes, our team brings all professional cleaning supplies."},
{
id: "q2", title: "Are you insured?", content: "Yes, we are fully licensed and insured for your peace of mind."},
{
id: "q3", title: "How can I book a session?", content: "Use our website booking portal or call us directly."},
<ContactSplitForm
title="Ready to Refresh Your Home?"
description="Contact us for a free estimate or any questions."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
ctaTitle="Ready to Refresh Your Home?"
ctaDescription="Get in touch for a custom estimate or answer your common questions here."
ctaIcon={Phone}
ctaButton={{
text: "Contact Us", href: "mailto:contact@darionscleaning.com"}}
textarea={{ name: "message", placeholder: "Your Request Details", rows: 4 }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/brown-sofa-white-living-room-with-copy-space_43614-886.jpg?_wi=2"
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Services", href: "#features"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
<FooterLogoEmphasis
logoText="Darions Domestic Cleaning"
columns={[
{ items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#features" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}