Compare commits
80 Commits
version_20
...
version_39
| Author | SHA1 | Date | |
|---|---|---|---|
| 15b886192c | |||
| dcef8c307e | |||
| 869609dc74 | |||
| 446d8e8685 | |||
| 3d163bb5fd | |||
| 9a65b42649 | |||
| f134f66591 | |||
| 26238f4c6f | |||
| 8c14aefa4d | |||
| ded792c8dc | |||
| d0935c6c7c | |||
| 3cd9865f02 | |||
| 9d09cc1d33 | |||
| a1f41fa97a | |||
| 9f2095da72 | |||
| 1589797695 | |||
| 4ba5dfa249 | |||
| 0efcfa955a | |||
| e14308fe20 | |||
| 2b2172b8d9 | |||
| bebc9a34cc | |||
| da64f52a3c | |||
| 9f640fcd73 | |||
| 5f6a67dc83 | |||
| 473cd18421 | |||
| 980b16cdcc | |||
| 5a2664d192 | |||
| f25e96f20f | |||
| 48d5530cd8 | |||
| 36d90e1fa8 | |||
| 3ff6945734 | |||
| 17fe2fff51 | |||
| ef8fac5e38 | |||
| f4a37819b3 | |||
| 0f5ec60947 | |||
| 44d326abe9 | |||
| fef189d55e | |||
| 7d5def77be | |||
| fd3d83a614 | |||
| 5df69d2913 | |||
| b2736ccef6 | |||
| 23cdd4ba99 | |||
| 00f1a4614a | |||
| d3082e7dda | |||
| 19eaecaa61 | |||
| ce45b10c14 | |||
| 37ad040a0e | |||
| d0fe08c670 | |||
| f186e70c61 | |||
| 7785c8bf05 | |||
| 6b89b09e21 | |||
| 87b3a4b09f | |||
| a952712a0e | |||
| ad69735615 | |||
| df5844d8a4 | |||
| fd9ca7627c | |||
| 968664bedf | |||
| ccd6453156 | |||
| bd0420552d | |||
| 9adeb4a281 | |||
| 670a01e849 | |||
| 14c60f2cb3 | |||
| a4f7a7d6cf | |||
| 82ef1197ca | |||
| 31596e7a10 | |||
| 9818326f70 | |||
| cef768035b | |||
| f108f0258c | |||
| 5bf7b4dc26 | |||
| 5e94724aff | |||
| 089ba2a600 | |||
| bbe4440ee8 | |||
| 6fbbdeeb2a | |||
| 02365183c7 | |||
| 2643da5553 | |||
| 1dd56a2023 | |||
| 4cbec6ca27 | |||
| 961a8ace80 | |||
| 2d9ae2a9ea | |||
| cdeb1a22f1 |
@@ -26,10 +26,11 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
logoSrc="http://img.b2bpic.net/free-photo/luxury-restroom-rental-logo-placeholder.png"
|
brandName="CleanScene"
|
||||||
logoAlt="CleanScene Restroom Rentals"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoImageClassName="scale-150"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -37,6 +38,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Request a Free Estimate"
|
title="Request a Free Estimate"
|
||||||
|
titleClassName="text-[#0a7039]"
|
||||||
description="Tell us about your event. We typically respond within 4 business hours."
|
description="Tell us about your event. We typically respond within 4 business hours."
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
@@ -53,7 +55,10 @@ export default function LandingPage() {
|
|||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene Restroom Rentals"
|
logoText="CleanScene"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
69
src/app/estimate/page.tsx
Normal file
69
src/app/estimate/page.tsx
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
|
||||||
|
export default function EstimatePage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="expand-hover"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="largeSmallSizeLargeTitles"
|
||||||
|
background="blurBottom"
|
||||||
|
cardStyle="soft-shadow"
|
||||||
|
primaryButtonStyle="radial-glow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Fleet", id: "/fleet" },
|
||||||
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
|
]}
|
||||||
|
brandName="CleanScene"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoImageClassName="scale-150"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="estimate-form" data-section="estimate-form">
|
||||||
|
<ContactSplitForm
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Get Your Free Estimate"
|
||||||
|
titleClassName="text-[#0a7039]"
|
||||||
|
description="Fill out the details below, and we will provide a comprehensive quote for your event."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
|
{ name: "event_type", type: "text", placeholder: "Event Type", required: true },
|
||||||
|
{ name: "event_date", type: "date", placeholder: "Event Date", required: true },
|
||||||
|
]}
|
||||||
|
textarea={{ name: "details", placeholder: "Additional event details or specific requirements...", rows: 5 }}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/event-planner-organizing-wedding-details_23-2148197779.jpg"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[
|
||||||
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||||
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
|
]}
|
||||||
|
logoText="CleanScene"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -26,25 +26,27 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
logoSrc="http://img.b2bpic.net/free-photo/luxury-restroom-rental-logo-placeholder.png"
|
brandName="CleanScene"
|
||||||
logoAlt="CleanScene Restroom Rentals"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoImageClassName="scale-150"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="product" data-section="product">
|
<div id="product" data-section="product">
|
||||||
<ProductCardThree
|
<ProductCardTwo
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="split-description"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="asymmetric-60-wide-40-narrow"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Our Full Fleet Inventory"
|
title="Our Full Fleet Inventory"
|
||||||
|
textBoxTitleClassName="text-[#0a7039]"
|
||||||
description="Explore our complete range of high-end mobile restroom solutions."
|
description="Explore our complete range of high-end mobile restroom solutions."
|
||||||
products={[
|
products={[
|
||||||
{ id: "f1", name: "2-Station Classic", price: "$750/day", imageSrc: "http://img.b2bpic.net/free-photo/backlit-mirror-minimalist-sink-spa-bathroom_169016-68891.jpg" },
|
{ id: "f1", brand: "CleanScene", name: "2-Station Classic", price: "$750/day", rating: 5, reviewCount: "10+ reviews", imageSrc: "http://img.b2bpic.net/free-photo/backlit-mirror-minimalist-sink-spa-bathroom_169016-68891.jpg" },
|
||||||
{ id: "f2", name: "3-Station Executive", price: "$1200/day", imageSrc: "http://img.b2bpic.net/close-up-bathtub-with-faucet_1203-1500.jpg" },
|
{ id: "f2", brand: "CleanScene", name: "3-Station Executive", price: "$1200/day", rating: 5, reviewCount: "10+ reviews", imageSrc: "http://img.b2bpic.net/close-up-bathtub-with-faucet_1203-1500.jpg" },
|
||||||
{ id: "f3", name: "5-Station Luxury Suite", price: "$1800/day", imageSrc: "http://img.b2bpic.net/small-bathroom-space-with-modern-style-furniture_23-2150864622.jpg" },
|
{ id: "f3", brand: "CleanScene", name: "5-Station Luxury Suite", price: "$1800/day", rating: 5, reviewCount: "10+ reviews", imageSrc: "http://img.b2bpic.net/small-bathroom-space-with-modern-style-furniture_23-2150864622.jpg" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -55,7 +57,10 @@ export default function LandingPage() {
|
|||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene Restroom Rentals"
|
logoText="CleanScene"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -30,10 +30,11 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Fleet", id: "/fleet" },
|
{ name: "Fleet", id: "/fleet" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Request a free estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
logoSrc="http://img.b2bpic.net/free-photo/luxury-restroom-rental-logo-placeholder.png"
|
brandName="CleanScene"
|
||||||
logoAlt="CleanScene Restroom Rentals"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoImageClassName="scale-150"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -41,6 +42,7 @@ export default function LandingPage() {
|
|||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
title="Set the Scene for a Flawless Event"
|
title="Set the Scene for a Flawless Event"
|
||||||
|
titleClassName="text-[#0a7039]"
|
||||||
description="Our trailers offer the comfort of an interior space with the quality of modern hospitality."
|
description="Our trailers offer the comfort of an interior space with the quality of modern hospitality."
|
||||||
kpis={[
|
kpis={[
|
||||||
{ value: "10+", label: "Counties Served" },
|
{ value: "10+", label: "Counties Served" },
|
||||||
@@ -49,25 +51,11 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get My Free Quote", href: "/contact" },
|
{ text: "Request a free estimate", href: "/estimate" },
|
||||||
{ text: "View The Fleet", href: "/fleet" },
|
{ text: "View The Fleet", href: "/fleet" },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-large-transparent-window-with-opened-door-outside-which-newlyweds-posing-embracing-balcony-their-wedding-day_8353-12102.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/front-view-large-transparent-window-with-opened-door-outside-which-newlyweds-posing-embracing-balcony-their-wedding-day_8353-12102.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
|
||||||
{ src: "http://img.b2bpic.net/free-photo/couple-backs-sitting-bed-with-her-head-resting-his-shoulder_1157-1293.jpg", alt: "Couple of backs sitting on a bed with her head resting on his shoulder" },
|
|
||||||
{ src: "http://img.b2bpic.net/long-white-dinner-table-with-sparkling-glassware-candleholders-stands-beach_1304-3243.jpg", alt: "Long white dinner table with sparkling glassware and candleholders stands on the beach" },
|
|
||||||
{ src: "http://img.b2bpic.net/free-photo/table-setting-with-decorated-newlyweds-chairs-wedding-reception-hall_637285-989.jpg", alt: "Table setting with decorated newlyweds chairs in wedding reception hall" },
|
|
||||||
{ src: "http://img.b2bpic.net/free-photo/table-setting-with-floral-centerpiece-wedding-reception-venue_637285-5627.jpg", alt: "Table setting with floral centerpiece at wedding reception venue." },
|
|
||||||
{ src: "http://img.b2bpic.net/free-photo/floral-compositions-made-greenery-outdoors-wedding-ceremony_8353-9788.jpg", alt: "Floral compositions made of greenery at the outdoors wedding ceremony" },
|
|
||||||
]}
|
|
||||||
marqueeItems={[
|
|
||||||
{ type: "text", text: "Luxury Restroom Trailers" },
|
|
||||||
{ type: "text", text: "Northeast Wisconsin" },
|
|
||||||
{ type: "text", text: "Event Perfection" },
|
|
||||||
{ type: "text", text: "Seamless Logistics" },
|
|
||||||
{ type: "text", text: "Premium Hospitality" },
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -75,8 +63,9 @@ export default function LandingPage() {
|
|||||||
<TextSplitAbout
|
<TextSplitAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="The CleanScene Difference"
|
title="The CleanScene Difference"
|
||||||
|
titleClassName="text-[#0a7039]"
|
||||||
description={[
|
description={[
|
||||||
"We believe restrooms shouldn't just be functional—they should be part of the event design.", "Our trailers offer the comfort of an interior space with the luxury of modern hospitality."
|
"We believe restrooms shouldn't just be functional - they should be part of the event design and experience.", "Our trailers offer the comfort of a premium interior space with a touch of modern hospitality."
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -88,10 +77,11 @@ 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: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-wood-stone-white-bathroom_105762-2136.jpg" },
|
{ 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: 0, reviewCount: "", imageSrc: "http://img.b2bpic.net/modern-bathroom-with-big-mirror_1203-1497.jpg" },
|
{ 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]"
|
||||||
description="Made-in-USA trailers designed for peak comfort."
|
description="Made-in-USA trailers designed for peak comfort."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -103,6 +93,7 @@ export default function LandingPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Modern Hospitality Standards"
|
title="Modern Hospitality Standards"
|
||||||
|
cardTitleClassName="text-[#0a7039]"
|
||||||
description="Every detail of our rental fleet is meticulously maintained to ensure your event leaves a lasting impression."
|
description="Every detail of our rental fleet is meticulously maintained to ensure your event leaves a lasting impression."
|
||||||
features={[
|
features={[
|
||||||
{ title: "Advanced Climate Control", description: "Fully adjustable heating and cooling systems to keep guests comfortable regardless of the season.", imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-modern-hotel-interior_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-modern-hotel-interior_23-2148777121.jpg", buttonText: "Learn More" },
|
{ title: "Advanced Climate Control", description: "Fully adjustable heating and cooling systems to keep guests comfortable regardless of the season.", imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-modern-hotel-interior_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-modern-hotel-interior_23-2148777121.jpg", buttonText: "Learn More" },
|
||||||
@@ -117,8 +108,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
text="Ready to elevate your event experience? Get in touch with our team today to secure your dates and discover our premium rental options."
|
text="Ready to elevate your event experience? Get in touch with our team today to secure your dates and discover our premium rental options."
|
||||||
|
textClassName="text-[#0a7039]"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Request My Free Quote", href: "/contact" },
|
{ text: "Request a free estimate", href: "/estimate" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -129,7 +121,10 @@ export default function LandingPage() {
|
|||||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="CleanScene Restroom Rentals"
|
logoText="CleanScene"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user