Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-10 21:13:24 +00:00
3 changed files with 63 additions and 33 deletions

View File

@@ -2,25 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
@@ -28,36 +16,26 @@ export default function ContactPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Clean On Click"
/>
</div>
<div id="contact-form" data-section="contact-form">
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Booking"
title="Book Your Session"
description="Ready to get spotless? Get in touch today."
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358951.jpg"
imageAlt="Man doing professional home cleaning service"
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Let's Connect"
description={["Have questions? Drop us a line or call us directly."]}
tag="Get In Touch"
title="Ready for a Cleaner Space?"
description="Reach out to our team today for a free estimate or consultation."
mediaPosition="right"
imageSrc="http://img.b2bpic.net/free-photo/contact-us-customer-support-service-concept_23-2148184518.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/disinfectant-with-cloth-table_23-2148731731.jpg?_wi=4"
logoText="Clean On Click"
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Pricing", href: "/pricing" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Deep Cleaning", href: "/services" }, { label: "Pest Control", href: "/services" }, { label: "Carpet Cleaning", href: "/services" }, { label: "Floor Maintenance", href: "/services" }] },
{ title: "Contact", items: [{ label: "03 151 615", href: "tel:+96103151615" }, { label: "clean@cleanonclicklb.com", href: "mailto:clean@cleanonclicklb.com" }, { label: "Zalka, Mount Lebanon", href: "#" }] }
]}

View File

@@ -122,4 +122,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

52
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,52 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function PricingPage() {
return (
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Clean On Click"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Transparent Pricing for Every Need"
description="Flexible packages to suit your budget and requirements."
plans={[
{ id: "basic", title: "Basic", price: "$40", period: "/visit", features: ["General Dusting", "Floor Sweeping", "Kitchen Surface Clean"], button: { text: "Book Now", href: "/contact" } },
{ id: "pro", title: "Professional", price: "$75", period: "/visit", features: ["Everything in Basic", "Bathroom Sanitization", "Window Cleaning", "Pest Control Basics"], button: { text: "Book Now", href: "/contact" } },
{ id: "premium", title: "Premium", price: "$120", period: "/visit", features: ["Everything in Pro", "Deep Carpet Steam", "Full Appliance Detailing", "Priority Support"], button: { text: "Book Now", href: "/contact" } }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Clean On Click"
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Pricing", href: "/pricing" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Deep Cleaning", href: "/services" }, { label: "Pest Control", href: "/services" }, { label: "Carpet Cleaning", href: "/services" }, { label: "Floor Maintenance", href: "/services" }] },
{ title: "Contact", items: [{ label: "03 151 615", href: "tel:+96103151615" }, { label: "clean@cleanonclicklb.com", href: "mailto:clean@cleanonclicklb.com" }, { label: "Zalka, Mount Lebanon", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}