Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-05-28 01:16:55 +00:00
4 changed files with 63 additions and 179 deletions

View File

@@ -27,23 +27,16 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Graca's Cleaners"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
@@ -54,9 +47,7 @@ export default function LandingPage() {
title="Graca's Cleaners: Dedicated to Immaculate Spaces and Happy Clients"
buttons={[
{
text: "Meet Our Team",
href: "/about#team",
},
text: "Meet Our Team", href: "/about#team"},
]}
buttonAnimation="slide-up"
/>
@@ -69,33 +60,13 @@ export default function LandingPage() {
useInvertedBackground={false}
team={[
{
id: "1",
name: "Graca Silva",
role: "Founder & Lead Cleaner",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-apron-rubber-gloves-holding-bottle-with-cleaning-supplies-smiling-cheerfully-white-wall_141793-13591.jpg",
imageAlt: "Graca Silva",
},
id: "1", name: "Graca Silva", role: "Founder & Lead Cleaner", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-apron-rubber-gloves-holding-bottle-with-cleaning-supplies-smiling-cheerfully-white-wall_141793-13591.jpg", imageAlt: "Graca Silva"},
{
id: "2",
name: "Carlos Mendes",
role: "Operations Manager",
imageSrc: "http://img.b2bpic.net/free-photo/angry-young-cleaning-man-wearing-casual-clothes-cap-rubber-gloves-holding-plate-sponge-with-annoyed-expression-standing-pink-wall_141793-64025.jpg",
imageAlt: "Carlos Mendes",
},
id: "2", name: "Carlos Mendes", role: "Operations Manager", imageSrc: "http://img.b2bpic.net/free-photo/angry-young-cleaning-man-wearing-casual-clothes-cap-rubber-gloves-holding-plate-sponge-with-annoyed-expression-standing-pink-wall_141793-64025.jpg", imageAlt: "Carlos Mendes"},
{
id: "3",
name: "Sofia Costa",
role: "Residential Cleaning Specialist",
imageSrc: "http://img.b2bpic.net/free-photo/view-professional-cleaning-service-person-holding-supplies_23-2150520608.jpg",
imageAlt: "Sofia Costa",
},
id: "3", name: "Sofia Costa", role: "Residential Cleaning Specialist", imageSrc: "http://img.b2bpic.net/free-photo/view-professional-cleaning-service-person-holding-supplies_23-2150520608.jpg", imageAlt: "Sofia Costa"},
{
id: "4",
name: "David Pereira",
role: "Commercial Cleaning Supervisor",
imageSrc: "http://img.b2bpic.net/free-photo/young-cleaning-man-wearing-casual-clothes-cap-rubber-gloves-holding-spray-bottle-smiling-cheerfully-standing-white-wall_141793-60752.jpg",
imageAlt: "David Pereira",
},
id: "4", name: "David Pereira", role: "Commercial Cleaning Supervisor", imageSrc: "http://img.b2bpic.net/free-photo/young-cleaning-man-wearing-casual-clothes-cap-rubber-gloves-holding-spray-bottle-smiling-cheerfully-standing-white-wall_141793-60752.jpg", imageAlt: "David Pereira"},
]}
title="Meet Our Dedicated Cleaning Professionals"
description="Our team is the heart of Graca's Cleaners, bringing passion, expertise, and a meticulous eye to every job."
@@ -107,14 +78,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
names={[
"Trusted Home Services",
"Eco-Solution Providers",
"Spotless Business Co.",
"Urban Living Residences",
"Community Care Foundation",
"Shine Bright Retail",
"Happy Homes Association",
]}
"Trusted Home Services", "Eco-Solution Providers", "Spotless Business Co.", "Urban Living Residences", "Community Care Foundation", "Shine Bright Retail", "Happy Homes Association"]}
title="Trusted by Leading Homes and Businesses"
description="We're proud to partner with a diverse range of clients who rely on our consistent quality and professionalism."
speed={40}
@@ -127,65 +91,43 @@ export default function LandingPage() {
logoText="Graca's Cleaners"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Residential Cleaning",
href: "/services#residential",
},
label: "Residential Cleaning", href: "/services#residential"},
{
label: "Commercial Cleaning",
href: "/services#commercial",
},
label: "Commercial Cleaning", href: "/services#commercial"},
{
label: "Deep Cleaning",
href: "/services#deep",
},
label: "Deep Cleaning", href: "/services#deep"},
{
label: "Move In/Out Cleaning",
href: "/services#move-in-out",
},
label: "Move In/Out Cleaning", href: "/services#move-in-out"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Team",
href: "/about#team",
},
label: "Team", href: "/about#team"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "FAQ",
href: "/contact#faq",
},
label: "FAQ", href: "/contact#faq"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
copyrightText="© 2024 Graca's Cleaners. All rights reserved."
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -39,6 +39,7 @@ export default function BookingSitePage() {
name: "Book Now", id: "/booking-site"}
]}
brandName="Graca's Cleaners"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
@@ -163,9 +164,10 @@ export default function BookingSitePage() {
},
]}
copyrightText="© 2024 Graca's Cleaners. All rights reserved."
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,23 +26,16 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Graca's Cleaners"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
@@ -53,38 +46,20 @@ export default function LandingPage() {
description="Ready for a sparkling clean space? Fill out the form below and we'll get back to you with a personalized quote."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Full Name",
required: true,
name: "name", type: "text", placeholder: "Your Full Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email Address",
required: true,
name: "email", type: "email", placeholder: "Your Email Address", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number (Optional)",
},
name: "phone", type: "tel", placeholder: "Phone Number (Optional)"},
]}
multiSelect={{
name: "serviceType",
label: "Select Service Type",
options: [
"Residential Cleaning",
"Commercial Cleaning",
"Deep Cleaning",
"Move In/Out Cleaning",
"Other",
],
name: "serviceType", label: "Select Service Type", options: [
"Residential Cleaning", "Commercial Cleaning", "Deep Cleaning", "Move In/Out Cleaning", "Other"],
}}
textarea={{
name: "message",
placeholder: "Tell us more about your cleaning needs",
rows: 4,
name: "message", placeholder: "Tell us more about your cleaning needs", rows: 4,
}}
imageSrc="http://img.b2bpic.net/free-photo/image-asian-woman-office-talks-cellphone-discuss-work-with-client-mobile-phone-sits_1258-167974.jpg"
imageAlt="Friendly cleaner with a tablet"
@@ -99,30 +74,15 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "What areas do you serve?",
content: "We proudly serve residential and commercial clients within a 30-mile radius of our main office. Please contact us to confirm service availability in your specific location.",
},
id: "1", title: "What areas do you serve?", content: "We proudly serve residential and commercial clients within a 30-mile radius of our main office. Please contact us to confirm service availability in your specific location."},
{
id: "2",
title: "Are your cleaning products safe?",
content: "Yes, we prioritize the health of our clients and the environment. We use eco-friendly, non-toxic, and biodegradable cleaning products that are safe for children, pets, and individuals with allergies.",
},
id: "2", title: "Are your cleaning products safe?", content: "Yes, we prioritize the health of our clients and the environment. We use eco-friendly, non-toxic, and biodegradable cleaning products that are safe for children, pets, and individuals with allergies."},
{
id: "3",
title: "Can I customize my cleaning service?",
content: "Absolutely! We offer flexible cleaning plans that can be tailored to your specific needs and preferences. You can choose from one-time, weekly, bi-weekly, or monthly services, and add specific tasks as required.",
},
id: "3", title: "Can I customize my cleaning service?", content: "Absolutely! We offer flexible cleaning plans that can be tailored to your specific needs and preferences. You can choose from one-time, weekly, bi-weekly, or monthly services, and add specific tasks as required."},
{
id: "4",
title: "What if I'm not satisfied with the cleaning?",
content: "Your satisfaction is our top priority. If you are not completely happy with our service, please contact us within 24 hours, and we will return to re-clean the area at no additional charge.",
},
id: "4", title: "What if I'm not satisfied with the cleaning?", content: "Your satisfaction is our top priority. If you are not completely happy with our service, please contact us within 24 hours, and we will return to re-clean the area at no additional charge."},
{
id: "5",
title: "Do I need to provide cleaning supplies?",
content: "No, our team comes fully equipped with all the necessary professional-grade cleaning supplies and equipment to ensure a thorough and efficient clean. You don't need to worry about a thing!",
},
id: "5", title: "Do I need to provide cleaning supplies?", content: "No, our team comes fully equipped with all the necessary professional-grade cleaning supplies and equipment to ensure a thorough and efficient clean. You don't need to worry about a thing!"},
]}
sideTitle="Frequently Asked Questions"
sideDescription="Find quick answers to common questions about Graca's Cleaners and our services."
@@ -136,65 +96,43 @@ export default function LandingPage() {
logoText="Graca's Cleaners"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Residential Cleaning",
href: "/services#residential",
},
label: "Residential Cleaning", href: "/services#residential"},
{
label: "Commercial Cleaning",
href: "/services#commercial",
},
label: "Commercial Cleaning", href: "/services#commercial"},
{
label: "Deep Cleaning",
href: "/services#deep",
},
label: "Deep Cleaning", href: "/services#deep"},
{
label: "Move In/Out Cleaning",
href: "/services#move-in-out",
},
label: "Move In/Out Cleaning", href: "/services#move-in-out"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Team",
href: "/about#team",
},
label: "Team", href: "/about#team"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "FAQ",
href: "/contact#faq",
},
label: "FAQ", href: "/contact#faq"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
copyrightText="© 2024 Graca's Cleaners. All rights reserved."
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -41,6 +41,7 @@ export default function LandingPage() {
name: "Book Now", id: "/booking-site"}
]}
brandName="Graca's Cleaners"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
@@ -209,9 +210,10 @@ export default function LandingPage() {
},
]}
copyrightText="© 2024 Graca's Cleaners. All rights reserved."
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EKbpymWA6Q8KxfgRusQqtoetGM/uploaded-1779930958989-9yhbudhh.png"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}