Update src/app/services/page.tsx
This commit is contained in:
@@ -2,13 +2,15 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import { Crown, Sparkles, Star } from "lucide-react";
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import { Sparkles, Home, Building, Braces, HandHelping } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -23,221 +25,173 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Graca's Cleaners"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Graca's Cleaners"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="service-showcase" data-section="service-showcase">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "residential",
|
||||
name: "Residential Cleaning",
|
||||
price: "Starting at $99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-wooden-inscription-home-living-room_169016-5181.jpg",
|
||||
imageAlt: "Clean living room",
|
||||
},
|
||||
{
|
||||
id: "commercial",
|
||||
name: "Commercial Cleaning",
|
||||
price: "Custom Quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-sitting-floor_23-2149345541.jpg",
|
||||
imageAlt: "Clean office space",
|
||||
},
|
||||
{
|
||||
id: "deep",
|
||||
name: "Deep Cleaning",
|
||||
price: "Starting at $150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-cleaning-office_23-2149345515.jpg",
|
||||
imageAlt: "Sparkling clean kitchen",
|
||||
},
|
||||
{
|
||||
id: "move-in-out",
|
||||
name: "Move In/Out Cleaning",
|
||||
price: "Starting at $200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-roommates-together-home_23-2149358498.jpg",
|
||||
imageAlt: "Empty, clean apartment",
|
||||
},
|
||||
{
|
||||
id: "window-cleaning",
|
||||
name: "Window Cleaning",
|
||||
price: "Starting at $50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-his-home_23-2148112394.jpg",
|
||||
imageAlt: "Clean windows",
|
||||
},
|
||||
{
|
||||
id: "carpet-cleaning",
|
||||
name: "Carpet Cleaning",
|
||||
price: "Starting at $75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-artist-drawing-comfy-home-interior_158595-7701.jpg",
|
||||
imageAlt: "Professional carpet cleaning",
|
||||
},
|
||||
]}
|
||||
title="Our Comprehensive Cleaning Services"
|
||||
description="From sparkling homes to pristine offices, we offer a range of cleaning solutions tailored to your needs."
|
||||
/>
|
||||
</div>
|
||||
<div id="hero-services" data-section="hero-services">
|
||||
<HeroBillboard
|
||||
title="Our Tailored Cleaning Services"
|
||||
description="Discover the perfect cleaning solution for your home or business. We offer a range of services designed to meet your unique needs."
|
||||
background={{
|
||||
variant: "radial-gradient"
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cleaner-holding-spray-bottle-rag_23-2150242566.jpg"
|
||||
imageAlt="Cleaner with cleaning tools"
|
||||
buttons={[
|
||||
{ text: "Get a Free Quote", href: "/contact" },
|
||||
{ text: "View Pricing", href: "#pricing" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardEight
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
badge: "Standard",
|
||||
badgeIcon: Sparkles,
|
||||
price: "$99",
|
||||
subtitle: "Ideal for regular upkeep",
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Basic Clean",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Standard Room Cleaning",
|
||||
"Kitchen & Bathroom Wipe-down",
|
||||
"Vacuuming & Mopping",
|
||||
"Dusting Surfaces",
|
||||
"Waste Removal",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "premium",
|
||||
badge: "Popular",
|
||||
badgeIcon: Star,
|
||||
price: "$159",
|
||||
subtitle: "For a deeper, more comprehensive clean",
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Premium Clean",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"All Basic Features",
|
||||
"Deep Kitchen Cleaning",
|
||||
"Deep Bathroom Sanitization",
|
||||
"Baseboard Cleaning",
|
||||
"Interior Window Spot Cleaning",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "elite",
|
||||
badge: "Elite",
|
||||
badgeIcon: Crown,
|
||||
price: "Custom Quote",
|
||||
subtitle: "Ultimate personalized cleaning experience",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Elite Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"All Premium Features",
|
||||
"Specialty Appliance Cleaning",
|
||||
"Cabinet & Drawer Organization",
|
||||
"Full Interior Window Cleaning",
|
||||
"Custom Requests Accepted",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Choose Your Cleaning Plan"
|
||||
description="Select the perfect plan for your residential or commercial cleaning needs, with flexible options."
|
||||
/>
|
||||
</div>
|
||||
<div id="service-listings" data-section="service-listings">
|
||||
<FeatureCardTwentyFive
|
||||
animationType="slide-up"
|
||||
title="Comprehensive Cleaning Solutions"
|
||||
description="From routine tidying to deep sanitization, our expert team delivers exceptional results every time."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Residential Cleaning", description: "Keep your home sparkling clean with our regular or one-time services, customized to your schedule and preferences.", icon: Home,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-man-cleaning-couch-living-room_23-2147860228.jpg", imageAlt: "Residential cleaning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-professional-cleaner-doing-her-job-office-apartment_23-2147860233.jpg", imageAlt: "Living room cleaning" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Commercial Cleaning", description: "Maintain a professional and hygienic workspace that impresses clients and boosts employee morale. Tailored plans for businesses of all sizes.", icon: Building,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/female-cleaner-working-modern-office_23-2147860220.jpg", imageAlt: "Commercial cleaning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-african-american-cleaner-working-office_23-2148773950.jpg", imageAlt: "Office cleaning" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Deep Cleaning", description: "Our intensive deep cleaning service targets every nook and cranny, eliminating grime and revitalizing your space from top to bottom.", icon: Braces,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-spray-bottle-near-different-cleaning-items_23-2147860232.jpg", imageAlt: "Deep cleaning supplies" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/professional-cleaner-doing-her-job-office-apartment_23-2147860233.jpg", imageAlt: "Bathroom deep clean" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Move In/Out Cleaning", description: "Ensure a seamless transition with our specialized move in/out cleaning, leaving your old or new space immaculate and ready.", icon: HandHelping,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/empty-room-ready-clean-up_23-2149491689.jpg", imageAlt: "Empty room cleaning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-cleaning-supplies_23-2149405625.jpg", imageAlt: "Cleaning for moving" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Graca's Cleaners"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Residential Cleaning",
|
||||
href: "/services#residential",
|
||||
},
|
||||
{
|
||||
label: "Commercial Cleaning",
|
||||
href: "/services#commercial",
|
||||
},
|
||||
{
|
||||
label: "Deep Cleaning",
|
||||
href: "/services#deep",
|
||||
},
|
||||
{
|
||||
label: "Move In/Out Cleaning",
|
||||
href: "/services#move-in-out",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Team",
|
||||
href: "/about#team",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/contact#faq",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Graca's Cleaners. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardNine
|
||||
animationType="slide-up"
|
||||
title="Flexible Cleaning Plans"
|
||||
description="Choose the plan that fits your lifestyle and budget, with transparent pricing and no hidden fees."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "plan-1", title: "Basic Home Clean", price: "$99", period: "/visit", features: [
|
||||
"Dusting & Wiping Surfaces", "Vacuuming & Mopping Floors", "Kitchen Countertops & Sink", "Bathroom Refresh", "Trash Removal"
|
||||
],
|
||||
button: { text: "Book Now", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-person-cleaning-living-room_23-2147860231.jpg", imageAlt: "Basic home cleaning"
|
||||
},
|
||||
{
|
||||
id: "plan-2", title: "Premium Office Clean", price: "$180", period: "/visit", features: [
|
||||
"All Basic Home Clean features", "Office Desks & Equipment Wipe Down", "Breakroom & Appliance Exterior", "Restroom Sanitization", "Window Spot Cleaning"
|
||||
],
|
||||
button: { text: "Get a Quote", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-cleaner-working-modern-office_23-2147860220.jpg", imageAlt: "Premium office cleaning"
|
||||
},
|
||||
{
|
||||
id: "plan-3", title: "Ultimate Deep Clean", price: "$250", period: "/project", features: [
|
||||
"All Premium Office Clean features", "Inside Windows & Window Sills", "Baseboards & Wall Spot Cleaning", "Appliance Interior (Fridge, Oven)", "Cabinet Interiors"
|
||||
],
|
||||
button: { text: "Schedule Deep Clean", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-with-sprayer-rag_23-2148493134.jpg", imageAlt: "Ultimate deep cleaning"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="service-contact" data-section="service-contact">
|
||||
<ContactSplitForm
|
||||
title="Ready to Book Your Service?"
|
||||
description="Fill out the form below to get a personalized quote or to schedule your next cleaning appointment."
|
||||
useInvertedBackground={false}
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/person-contacting-customer-service_23-2149603010.jpg"
|
||||
imageAlt="Customer service representative"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone Number" }
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "serviceType", label: "Select Service Type", options: ["Residential Cleaning", "Commercial Cleaning", "Deep Cleaning", "Move In/Out Cleaning", "Other"]
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your cleaning needs...", rows: 5 }}
|
||||
buttonText="Get My Custom Quote"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Graca's Cleaners"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Residential Cleaning", href: "/services"},
|
||||
{
|
||||
label: "Commercial Cleaning", href: "/services"},
|
||||
{
|
||||
label: "Deep Cleaning", href: "/services"},
|
||||
{
|
||||
label: "Move In/Out Cleaning", href: "/services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Team", href: "/about#team"},
|
||||
{
|
||||
label: "Contact", href: "/contact"},
|
||||
{
|
||||
label: "FAQ", href: "/about#faq"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Graca's Cleaners. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user