Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -15,7 +15,7 @@ export default function LandingPage() {
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="radial-glow"
|
||||
@@ -26,22 +26,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="M.A. Suarez"
|
||||
/>
|
||||
@@ -52,9 +40,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Story"
|
||||
description={[
|
||||
"M.A. Suarez Cleaning Services began with a mission to create luxurious, pristine environments. We are a family-owned business dedicated to integrity and quality.",
|
||||
"We treat every space we touch with the utmost care, believing that clean environments lead to happier, more productive lives.",
|
||||
]}
|
||||
"M.A. Suarez Cleaning Services began with a mission to create luxurious, pristine environments. We are a family-owned business dedicated to integrity and quality.", "We treat every space we touch with the utmost care, believing that clean environments lead to happier, more productive lives."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -66,36 +52,11 @@ export default function LandingPage() {
|
||||
title="Our Achievements"
|
||||
description="Growing with our community one home at a time."
|
||||
metrics={[
|
||||
{
|
||||
id: "am1",
|
||||
icon: Heart,
|
||||
title: "Happy Families",
|
||||
value: "300+",
|
||||
},
|
||||
{
|
||||
id: "am2",
|
||||
icon: MapPin,
|
||||
title: "Neighborhoods",
|
||||
value: "15",
|
||||
},
|
||||
{
|
||||
id: "am3",
|
||||
icon: Star,
|
||||
title: "Quality Score",
|
||||
value: "4.9/5",
|
||||
},
|
||||
{
|
||||
id: "am4",
|
||||
icon: TrendingUp,
|
||||
title: "Growth Rate",
|
||||
value: "40%",
|
||||
},
|
||||
{
|
||||
id: "am5",
|
||||
icon: Users,
|
||||
title: "Loyal Clients",
|
||||
value: "120",
|
||||
},
|
||||
{ id: "am1", icon: Heart, title: "Happy Families", value: "300+" },
|
||||
{ id: "am2", icon: MapPin, title: "Neighborhoods", value: "15" },
|
||||
{ id: "am3", icon: Star, title: "Quality Score", value: "4.9/5" },
|
||||
{ id: "am4", icon: TrendingUp, title: "Growth Rate", value: "40%" },
|
||||
{ id: "am5", icon: Users, title: "Loyal Clients", value: "120" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -105,46 +66,23 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Book Now", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Residential",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Deep Cleaning",
|
||||
href: "/services",
|
||||
},
|
||||
{ label: "Residential", href: "/services" },
|
||||
{ label: "Commercial", href: "/services" },
|
||||
{ label: "Deep Cleaning", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Email Info",
|
||||
href: "mailto:info@masuarezcleaning.com",
|
||||
},
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "masuarezbussines@gmail.com", href: "mailto:masuarezbussines@gmail.com" },
|
||||
{ label: "(904)-908-7818", href: "tel:9049087818" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -154,4 +92,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
@@ -14,7 +14,7 @@ export default function LandingPage() {
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="radial-glow"
|
||||
@@ -25,22 +25,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="M.A. Suarez"
|
||||
/>
|
||||
@@ -49,15 +37,11 @@ export default function LandingPage() {
|
||||
<div id="contact-main" data-section="contact-main">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
text="Ready for your free cleaning quote? Reach out to us today to schedule your walkthrough."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Ready for your free cleaning quote? Reach out to us at masuarezbussines@gmail.com or (904)-908-7818 today to schedule your walkthrough."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call XXX-XXX-XXXX",
|
||||
href: "tel:5555555555",
|
||||
},
|
||||
{ text: "Call (904)-908-7818", href: "tel:9049087818" },
|
||||
{ text: "Email Us", href: "mailto:masuarezbussines@gmail.com" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -65,9 +49,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Stay Updated"
|
||||
title="Subscribe to Tips"
|
||||
description="Get seasonal cleaning guides and exclusive offers directly to your inbox."
|
||||
@@ -81,46 +63,23 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Book Now", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Residential",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Deep Cleaning",
|
||||
href: "/services",
|
||||
},
|
||||
{ label: "Residential", href: "/services" },
|
||||
{ label: "Commercial", href: "/services" },
|
||||
{ label: "Deep Cleaning", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Email Info",
|
||||
href: "mailto:info@masuarezcleaning.com",
|
||||
},
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "masuarezbussines@gmail.com", href: "mailto:masuarezbussines@gmail.com" },
|
||||
{ label: "(904)-908-7818", href: "tel:9049087818" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -130,4 +89,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
267
src/app/page.tsx
267
src/app/page.tsx
@@ -18,7 +18,7 @@ export default function LandingPage() {
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="radial-glow"
|
||||
@@ -29,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="M.A. Suarez"
|
||||
/>
|
||||
@@ -55,40 +43,16 @@ export default function LandingPage() {
|
||||
logoText="M.A. Suarez Cleaning Services"
|
||||
description="Bringing pristine comfort and hotel-level cleanliness to homes and businesses across your community."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Free Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "View Services",
|
||||
href: "/services",
|
||||
},
|
||||
{ text: "Book a Free Quote", href: "/contact" },
|
||||
{ text: "View Services", href: "/services" },
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/comfortable-living-room-with-simple-interior_23-2147663481.jpg",
|
||||
imageAlt: "Luxury home interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407613.jpg",
|
||||
imageAlt: "Spotless surfaces",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528611.jpg",
|
||||
imageAlt: "Professional cleaning",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-sofa_74190-6516.jpg",
|
||||
imageAlt: "Elegant spaces",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349198.jpg",
|
||||
imageAlt: "Gold accents home",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-holding-cocktail-using-her-tablet_23-2147601342.jpg",
|
||||
imageAlt: "Pristine living room",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/comfortable-living-room-with-simple-interior_23-2147663481.jpg?w=1200&h=800", imageAlt: "Luxury home interior" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-daily-activities-minimal-decorated-room_23-2150407613.jpg?w=1200&h=800", imageAlt: "Spotless surfaces" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528611.jpg?w=1200&h=800", imageAlt: "Professional cleaning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-sofa_74190-6516.jpg?w=1200&h=800", imageAlt: "Elegant spaces" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349198.jpg?w=1200&h=800", imageAlt: "Modern precision" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-woman-holding-cocktail-using-her-tablet_23-2147601342.jpg?w=1200&h=800", imageAlt: "Pristine living room" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -100,26 +64,10 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Premium Quality",
|
||||
description: "Treating every home as our own with meticulous detail.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg",
|
||||
},
|
||||
{
|
||||
title: "Reliable & Professional",
|
||||
description: "Always punctual, consistent, and fully vetted staff.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/college-boy-with-books_23-2147678832.jpg",
|
||||
},
|
||||
{
|
||||
title: "Custom Plans",
|
||||
description: "Tailored cleanings around your lifestyle.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/partial-focus-photo-man-is-painting-ceiling-using-roller-brush_1150-6132.jpg",
|
||||
},
|
||||
{
|
||||
title: "Eco-Friendly",
|
||||
description: "Safe for kids, pets, and sensitive environments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/new-normal-office-corporate-worker_23-2148656651.jpg",
|
||||
},
|
||||
{ title: "Premium Quality", description: "Treating every home as our own with meticulous detail.", imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg?w=800&h=600" },
|
||||
{ title: "Reliable & Professional", description: "Always punctual, consistent, and fully vetted staff.", imageSrc: "http://img.b2bpic.net/free-photo/college-boy-with-books_23-2147678832.jpg?w=800&h=600" },
|
||||
{ title: "Custom Plans", description: "Tailored cleanings around your lifestyle.", imageSrc: "http://img.b2bpic.net/free-photo/partial-focus-photo-man-is-painting-ceiling-using-roller-brush_1150-6132.jpg?w=800&h=600" },
|
||||
{ title: "Eco-Friendly", description: "Safe for kids, pets, and sensitive environments.", imageSrc: "http://img.b2bpic.net/free-photo/new-normal-office-corporate-worker_23-2148656651.jpg?w=800&h=600" },
|
||||
]}
|
||||
title="Why Clients Trust M.A. Suarez"
|
||||
description="We deliver excellence through precision and care."
|
||||
@@ -133,60 +81,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Cleaning",
|
||||
name: "Residential Cleaning",
|
||||
price: "From $150",
|
||||
rating: 5,
|
||||
reviewCount: "24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-wearing-protective-glove-with-rag-cleaning-electric-stove-home-kitchen-beautiful-girl-washing-black-shiny-surface-kitchen-top-hand-with-foam-sponge-housework-concept_132075-13113.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Cleaning",
|
||||
name: "Commercial Cleaning",
|
||||
price: "Custom Pricing",
|
||||
rating: 5,
|
||||
reviewCount: "18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-medical-mask-home-picking-up-her-groceries-self-isolation_23-2148734856.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Cleaning",
|
||||
name: "Deep Cleaning",
|
||||
price: "From $250",
|
||||
rating: 5,
|
||||
reviewCount: "32",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-cleaning-home_23-2150453315.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Cleaning",
|
||||
name: "Move-In/Move-Out",
|
||||
price: "From $300",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-leaning-pile-package-boxes-smiling_1098-20735.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Cleaning",
|
||||
name: "Window Wash",
|
||||
price: "From $100",
|
||||
rating: 5,
|
||||
reviewCount: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/espresso-machine-bottle-olive-oil_181624-14425.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Cleaning",
|
||||
name: "Laundry Service",
|
||||
price: "From $50",
|
||||
rating: 5,
|
||||
reviewCount: "10",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hands-with-gloves-disinfecting-window-handle_23-2148705038.jpg",
|
||||
},
|
||||
{ id: "1", brand: "Cleaning", name: "Residential Cleaning", price: "From $150", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-wearing-protective-glove-with-rag-cleaning-electric-stove-home-kitchen-beautiful-girl-washing-black-shiny-surface-kitchen-top-hand-with-foam-sponge-housework-concept_132075-13113.jpg?w=600&h=400" },
|
||||
{ id: "2", brand: "Cleaning", name: "Commercial Cleaning", price: "Custom Pricing", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-medical-mask-home-picking-up-her-groceries-self-isolation_23-2148734856.jpg?w=600&h=400" },
|
||||
{ id: "3", brand: "Cleaning", name: "Deep Cleaning", price: "From $250", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-cleaning-home_23-2150453315.jpg?w=600&h=400" },
|
||||
{ id: "4", brand: "Cleaning", name: "Move-In/Move-Out", price: "From $300", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-leaning-pile-package-boxes-smiling_1098-20735.jpg?w=600&h=400" },
|
||||
{ id: "5", brand: "Cleaning", name: "Window Wash", price: "From $100", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/espresso-machine-bottle-olive-oil_181624-14425.jpg?w=600&h=400" },
|
||||
{ id: "6", brand: "Cleaning", name: "Laundry Service", price: "From $50", rating: 5, reviewCount: "10", imageSrc: "http://img.b2bpic.net/free-photo/hands-with-gloves-disinfecting-window-handle_23-2148705038.jpg?w=600&h=400" },
|
||||
]}
|
||||
title="Our Signature Services"
|
||||
description="Excellence in every corner of your home or office."
|
||||
@@ -198,46 +98,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Flawless",
|
||||
quote: "Absolutely flawless service. My home has never looked or smelled better.",
|
||||
name: "Jessica R.",
|
||||
role: "Client",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2148563421.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Punctual",
|
||||
quote: "They are always on time and maintain impeccable standards.",
|
||||
name: "Mark S.",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Detailed",
|
||||
quote: "The attention to detail on the baseboards was unmatched.",
|
||||
name: "Emily W.",
|
||||
role: "Interior Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-couple-cuddling-while-watching-tv-their-living-room_613910-5005.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Consistent",
|
||||
quote: "Always professional, thorough, and very discreet.",
|
||||
name: "David L.",
|
||||
role: "Executive",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-black-apron-working-greenhouse_1157-30878.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Great Staff",
|
||||
quote: "Vetted staff that makes me feel completely comfortable.",
|
||||
name: "Sarah K.",
|
||||
role: "Parent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-having-fun-together_23-2148466948.jpg",
|
||||
},
|
||||
{ id: "1", title: "Flawless", quote: "Absolutely flawless service. My home has never looked or smelled better.", name: "Jessica R.", role: "Client", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2148563421.jpg?w=400&h=400" },
|
||||
{ id: "2", title: "Punctual", quote: "They are always on time and maintain impeccable standards.", name: "Mark S.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg?w=400&h=400" },
|
||||
{ id: "3", title: "Detailed", quote: "The attention to detail on the baseboards was unmatched.", name: "Emily W.", role: "Interior Designer", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-couple-cuddling-while-watching-tv-their-living-room_613910-5005.jpg?w=400&h=400" },
|
||||
]}
|
||||
title="What Our Clients Are Saying"
|
||||
description="Real feedback from our satisfied luxury-living clients."
|
||||
@@ -252,36 +115,11 @@ export default function LandingPage() {
|
||||
title="Our Impact"
|
||||
description="Setting the standard for professional cleaning excellence."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Award,
|
||||
title: "Satisfied Customers",
|
||||
value: "500+",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Calendar,
|
||||
title: "Years Experience",
|
||||
value: "10+",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
icon: CheckCircle,
|
||||
title: "Homes Cleaned",
|
||||
value: "2000+",
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
icon: Clock,
|
||||
title: "Hours Saved",
|
||||
value: "10k+",
|
||||
},
|
||||
{
|
||||
id: "m5",
|
||||
icon: Smile,
|
||||
title: "Team Members",
|
||||
value: "25",
|
||||
},
|
||||
{ id: "m1", icon: Award, title: "Satisfied Customers", value: "500+" },
|
||||
{ id: "m2", icon: Calendar, title: "Years Experience", value: "10+" },
|
||||
{ id: "m3", icon: CheckCircle, title: "Homes Cleaned", value: "2000+" },
|
||||
{ id: "m4", icon: Clock, title: "Hours Saved", value: "10k+" },
|
||||
{ id: "m5", icon: Smile, title: "Team Members", value: "25" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -291,46 +129,23 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Book Now", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Residential",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Deep Cleaning",
|
||||
href: "/services",
|
||||
},
|
||||
{ label: "Residential", href: "/services" },
|
||||
{ label: "Commercial", href: "/services" },
|
||||
{ label: "Deep Cleaning", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Email Info",
|
||||
href: "mailto:info@masuarezcleaning.com",
|
||||
},
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "masuarezbussines@gmail.com", href: "mailto:masuarezbussines@gmail.com" },
|
||||
{ label: "(904)-908-7818", href: "tel:9049087818" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -340,4 +155,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -14,7 +14,7 @@ export default function LandingPage() {
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="radial-glow"
|
||||
@@ -25,22 +25,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="M.A. Suarez"
|
||||
/>
|
||||
@@ -53,26 +41,10 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Residential Maintenance",
|
||||
description: "Routine upkeep for peaceful environments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pile-fresh-tangerine-mixed-table_114579-46712.jpg",
|
||||
},
|
||||
{
|
||||
title: "Top-to-Bottom Deep Clean",
|
||||
description: "Seasonal reset for appliances, cabinets, and fans.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-cleaning-product_23-2148104644.jpg",
|
||||
},
|
||||
{
|
||||
title: "Commercial Maintenance",
|
||||
description: "Discreet and consistent workspace care.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stock-exchange-data-collected-empty-financial-department-office_482257-83100.jpg",
|
||||
},
|
||||
{
|
||||
title: "Move-In / Move-Out",
|
||||
description: "Seamless handoffs for your transitions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-together-african-american-couple-with-cardboard-boxes_1157-40330.jpg",
|
||||
},
|
||||
{ title: "Residential Maintenance", description: "Routine upkeep for peaceful environments.", imageSrc: "http://img.b2bpic.net/free-photo/pile-fresh-tangerine-mixed-table_114579-46712.jpg?w=800&h=600" },
|
||||
{ title: "Top-to-Bottom Deep Clean", description: "Seasonal reset for appliances, cabinets, and fans.", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-cleaning-product_23-2148104644.jpg?w=800&h=600" },
|
||||
{ title: "Commercial Maintenance", description: "Discreet and consistent workspace care.", imageSrc: "http://img.b2bpic.net/free-photo/stock-exchange-data-collected-empty-financial-department-office_482257-83100.jpg?w=800&h=600" },
|
||||
{ title: "Move-In / Move-Out", description: "Seamless handoffs for your transitions.", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-together-african-american-couple-with-cardboard-boxes_1157-40330.jpg?w=800&h=600" },
|
||||
]}
|
||||
title="Comprehensive Cleaning Services"
|
||||
description="Luxurious cleaning tailored for modern living."
|
||||
@@ -85,57 +57,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
badge: "Popular",
|
||||
price: "Add-On",
|
||||
subtitle: "Kitchen detail",
|
||||
features: [
|
||||
"Inside fridge cleaning",
|
||||
"Inside oven scrub",
|
||||
"Cabinet organization",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
badge: "New",
|
||||
price: "Add-On",
|
||||
subtitle: "Full home reset",
|
||||
features: [
|
||||
"Window track washing",
|
||||
"Laundry folding",
|
||||
"Cabinet organization",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
badge: "Custom",
|
||||
price: "Add-On",
|
||||
subtitle: "General",
|
||||
features: [
|
||||
"Window washing",
|
||||
"Wall spot cleaning",
|
||||
"Organization help",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ id: "p1", badge: "Popular", price: "Add-On", subtitle: "Kitchen detail", features: ["Inside fridge cleaning", "Inside oven scrub", "Cabinet organization"], buttons: [{ text: "Contact", href: "/contact" }] },
|
||||
{ id: "p2", badge: "New", price: "Add-On", subtitle: "Full home reset", features: ["Window track washing", "Laundry folding", "Cabinet organization"], buttons: [{ text: "Contact", href: "/contact" }] },
|
||||
{ id: "p3", badge: "Custom", price: "Add-On", subtitle: "General", features: ["Window washing", "Wall spot cleaning", "Organization help"], buttons: [{ text: "Contact", href: "/contact" }] },
|
||||
]}
|
||||
title="Add-On Luxury Services"
|
||||
description="Enhance your package with these optional touches."
|
||||
@@ -147,46 +71,23 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Book Now", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Residential",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Deep Cleaning",
|
||||
href: "/services",
|
||||
},
|
||||
{ label: "Residential", href: "/services" },
|
||||
{ label: "Commercial", href: "/services" },
|
||||
{ label: "Deep Cleaning", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Email Info",
|
||||
href: "mailto:info@masuarezcleaning.com",
|
||||
},
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "masuarezbussines@gmail.com", href: "mailto:masuarezbussines@gmail.com" },
|
||||
{ label: "(904)-908-7818", href: "tel:9049087818" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -196,4 +97,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user