Compare commits

..

2 Commits

Author SHA1 Message Date
b76d8e53e0 Update src/app/pricing/page.tsx 2026-05-03 18:24:51 +00:00
abc3cb1501 Update src/app/page.tsx 2026-05-03 18:24:50 +00:00
6 changed files with 57 additions and 39 deletions

View File

@@ -26,6 +26,7 @@ export default function ContactUsPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Request a free estimate", id: "/estimate" }, { name: "Request a free estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" }, { name: "Contact us", id: "/contact-us" },
]} ]}
@@ -52,7 +53,7 @@ export default function ContactUsPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] }, { items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Request a free estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] }, { items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
logoText="CleanScene" logoText="CleanScene"

View File

@@ -26,6 +26,7 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Request a free estimate", id: "/estimate" }, { name: "Request a free estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" }, { name: "Contact us", id: "/contact-us" },
]} ]}
@@ -53,7 +54,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] }, { items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Request a free estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] }, { items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
logoText="CleanScene" logoText="CleanScene"

View File

@@ -26,6 +26,7 @@ export default function EstimatePage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Request a free estimate", id: "/estimate" }, { name: "Request a free estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" }, { name: "Contact us", id: "/contact-us" },
]} ]}
@@ -57,7 +58,7 @@ export default function EstimatePage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] }, { items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Request a free estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] }, { items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
logoText="CleanScene" logoText="CleanScene"

View File

@@ -27,6 +27,7 @@ export default function FleetPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Estimate", id: "/estimate" }, { name: "Estimate", id: "/estimate" },
{ name: "Contact", id: "/contact-us" }, { name: "Contact", id: "/contact-us" },
]} ]}
@@ -52,7 +53,7 @@ export default function FleetPage() {
<FooterBaseCard <FooterBaseCard
logoText="CleanScene" logoText="CleanScene"
columns={[ columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] }, { title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Support", items: [{ label: "Estimate", href: "/estimate" }, { label: "Contact", href: "/contact-us" }] }, { title: "Support", items: [{ label: "Estimate", href: "/estimate" }, { label: "Contact", href: "/contact-us" }] },
]} ]}
/> />

View File

@@ -9,6 +9,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -30,6 +31,7 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Request a free estimate", id: "/estimate" }, { name: "Request a free estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" }, { name: "Contact us", id: "/contact-us" },
]} ]}
@@ -71,6 +73,20 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="split"
title="Transparent Pricing"
description="Simple, daily rental options tailored to your event length."
useInvertedBackground={false}
plans={[
{ id: "basic", title: "Weekend Warrior", price: "$1,200", period: "per weekend", features: ["Delivery & Setup", "Eco-friendly supplies", "Climate controlled"], button: { text: "Get Estimate" } },
{ id: "pro", title: "Event Master", price: "$2,500", period: "per week", features: ["Daily Maintenance", "Full onsite support", "All inclusive supplies"], button: { text: "Get Estimate" } }
]}
/>
</div>
<div id="fleet-preview" data-section="fleet-preview"> <div id="fleet-preview" data-section="fleet-preview">
<ProductCardTwo <ProductCardTwo
animationType="slide-up" animationType="slide-up"
@@ -78,8 +94,8 @@ export default function LandingPage() {
gridVariant="asymmetric-60-wide-40-narrow" gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ id: "p1", brand: "CleanScene", name: "3-Station Private Suite", price: "Quote on Request", rating: 5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png" }, { id: "p1", brand: "CleanScene", name: "3-Station Private Suite", price: "Quote on Request", rating: 5, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-wood-stone-white-bathroom_105762-2136.jpg" },
{ id: "p2", brand: "CleanScene", name: "Executive Comfort Series", price: "Quote on Request", rating: 5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832470445-mr4qosuh.png" }, { id: "p2", brand: "CleanScene", name: "Executive Comfort Series", price: "Quote on Request", rating: 5, reviewCount: "", imageSrc: "http://img.b2bpic.net/modern-bathroom-with-big-mirror_1203-1497.jpg" },
]} ]}
title="Our Curated Fleet" title="Our Curated Fleet"
textBoxTitleClassName="text-[#0a7039]" textBoxTitleClassName="text-[#0a7039]"
@@ -119,7 +135,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] }, { items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Request a free estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] }, { items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
logoText="CleanScene" logoText="CleanScene"

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function PricingPage() { export default function PricingPage() {
return ( return (
@@ -23,47 +23,45 @@ export default function PricingPage() {
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Request a free estimate", id: "/estimate" }, { name: "Pricing", id: "/pricing" },
{ name: "Contact us", id: "/contact-us" }, { name: "Request a free estimate", id: "/estimate" },
]} { name: "Contact us", id: "/contact-us" },
brandName="CleanScene" ]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png" brandName="CleanScene"
logoImageClassName="scale-150" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
/> logoImageClassName="scale-150"
/>
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardNine <PricingCardNine
useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
title="Our Pricing" title="Our Rental Rates"
description="Affordable plans for every event size." description="Transparent pricing for every occasion. Contact us for custom quotes on multi-day rentals."
useInvertedBackground={false}
plans={[ plans={[
{ { id: "basic", title: "Weekend Warrior", price: "$1,200", period: "per weekend", features: ["Delivery & Setup", "Eco-friendly supplies", "Climate controlled"], button: { text: "Get Estimate", href: "/estimate" } },
id: "basic", title: "Standard", price: "$1,000", period: "per event", features: ["Basic Setup", "24/7 Support"], { id: "pro", title: "Event Master", price: "$2,500", period: "per week", features: ["Daily Maintenance", "Full onsite support", "All inclusive supplies"], button: { text: "Get Estimate", href: "/estimate" } },
button: { text: "Select", href: "#" } { id: "corporate", title: "Corporate Solutions", price: "Custom", period: "contact for quote", features: ["Priority Booking", "Dedicated Account Manager", "Custom Staging"], button: { text: "Get Quote", href: "/contact-us" } }
},
{
id: "premium", title: "Premium", price: "$1,500", period: "per event", features: ["Premium Setup", "Enhanced Maintenance", "24/7 Support"],
button: { text: "Select", href: "#" }
}
]} ]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] }, { items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Request a free estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] }, { items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
logoText="CleanScene" logoText="CleanScene"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
logoClassName="text-white" logoClassName="text-white"
logoImageClassName="scale-75 hidden" logoImageClassName="scale-75 hidden"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>