Compare commits
93 Commits
version_32
...
version_55
| Author | SHA1 | Date | |
|---|---|---|---|
| 60780d19b5 | |||
| 4f07372dd9 | |||
| 9806c8a901 | |||
| 085f29cb02 | |||
| 2935a76320 | |||
| cad7661bb3 | |||
| 865d270fca | |||
| c13223f856 | |||
| 8eb7725469 | |||
| 2ea8862fea | |||
| 0f1c9c82a0 | |||
| 83e9258bca | |||
| 8c227482f0 | |||
| 839f4efdc0 | |||
| 3d2c048f15 | |||
| c62b2da75b | |||
| 70697aeb6c | |||
| 2998d134b2 | |||
| faa042bc89 | |||
| 195a4d7ef4 | |||
| d7891d6e19 | |||
| b418d0003b | |||
| b5608442b0 | |||
| b7c03deee4 | |||
| 9ddebce470 | |||
| 6b03b983ea | |||
| 998a2b8187 | |||
| 50b24445fb | |||
| e4745aed71 | |||
| fa51f93d1f | |||
| f1eae01cbf | |||
| fe80446ff4 | |||
| 57ad5b1208 | |||
| 14e0f3a5e4 | |||
| bb9aeea966 | |||
| 7309a97af3 | |||
| ce7eb05e39 | |||
| d40c1e70d5 | |||
| 8a13860d9f | |||
| d1c0c0dda1 | |||
| 9ea08a942b | |||
| d9029d4fbb | |||
| 8518f7d41c | |||
| 020bc607aa | |||
| cf71d5cebd | |||
| 48bfc870ba | |||
| 25f329c290 | |||
| 08e2191322 | |||
| ba9400c45c | |||
| abdf3cc4a3 | |||
| 1df388d364 | |||
| 0d3d94d006 | |||
| baa107b9c5 | |||
| a19215a0df | |||
| 6207baa4b2 | |||
| 2481bc2110 | |||
| 9448072dad | |||
| cacac236f8 | |||
| 1fbdac3984 | |||
| 532bc23c33 | |||
| 59f63cfb11 | |||
| a558504f33 | |||
| 18bc64a2d2 | |||
| c18c17b8bb | |||
| ab172f1410 | |||
| 7c8aad9ad5 | |||
| 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 |
67
src/app/contact-us/page.tsx
Normal file
67
src/app/contact-us/page.tsx
Normal file
@@ -0,0 +1,67 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function ContactUsPage() {
|
||||
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" },
|
||||
{ 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"
|
||||
logoImageClassName="scale-150"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Contact Us"
|
||||
title="Get in Touch"
|
||||
description="Reach out to us via email at Info@cleanscenerestroom.com or call us at 920-212-1578 for any inquiries regarding our premium mobile restroom trailers."
|
||||
buttons={[
|
||||
{ text: "Call 920-212-1578", href: "tel:920-212-1578" },
|
||||
{ text: "Email Us", href: "mailto:Info@cleanscenerestroom.com" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||
{ 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>
|
||||
);
|
||||
}
|
||||
@@ -26,10 +26,11 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ 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-1777213452447-mwunnkf5.png"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||
logoImageClassName="scale-150"
|
||||
/>
|
||||
</div>
|
||||
@@ -52,12 +53,13 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||
{ items: [{ label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene Restroom Rentals"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213452447-mwunnkf5.png"
|
||||
logoImageClassName="scale-75"
|
||||
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>
|
||||
|
||||
72
src/app/estimate/page.tsx
Normal file
72
src/app/estimate/page.tsx
Normal file
@@ -0,0 +1,72 @@
|
||||
"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" },
|
||||
{ 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"
|
||||
logoImageClassName="scale-150"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="estimate-form" data-section="estimate-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Request a free estimate"
|
||||
titleClassName="text-[#0a7039]"
|
||||
description="Tell us about your event. We typically respond within 24 business hours."
|
||||
inputs={[
|
||||
{ name: "full_name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||
{ name: "event_date", type: "date", placeholder: "Event Date", required: true },
|
||||
{ name: "address", type: "text", placeholder: "Delivery Address", required: true },
|
||||
{ name: "event_type", type: "text", placeholder: "Event Type", required: true },
|
||||
]}
|
||||
textarea={{ name: "other_info", placeholder: "Other info (Optional)", 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" }, { label: "Request a free estimate", href: "/estimate" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||
{ 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,9 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function FleetPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -26,40 +26,40 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ 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-1777213452447-mwunnkf5.png"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||
logoImageClassName="scale-150"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardTwo
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
title="Our Full Fleet Inventory"
|
||||
textBoxTitleClassName="text-[#0a7039]"
|
||||
description="Explore our complete range of high-end mobile restroom solutions."
|
||||
title="Our premium mobile restroom fleet"
|
||||
description="We price on a per day basis, offering multi-day rental discounts."
|
||||
products={[
|
||||
{ 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", 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", 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" },
|
||||
{ id: "f1", name: "3 Station, Private Floorplan Trailer", price: "$1,375 per day", imageSrc: "http://img.b2bpic.net/free-photo/backlit-mirror-minimalist-sink-spa-bathroom_169016-68891.jpg?_wi=1" },
|
||||
{ id: "f2", name: "4 Station, Community Floorplan Trailer", price: "$1,825 per day", imageSrc: "http://img.b2bpic.net/close-up-bathtub-with-faucet_1203-1500.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
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"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||
{ items: [{ label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene Restroom Rentals"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213452447-mwunnkf5.png"
|
||||
logoImageClassName="scale-75"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -30,10 +30,11 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ 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-1777213452447-mwunnkf5.png"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||
logoImageClassName="scale-150"
|
||||
/>
|
||||
</div>
|
||||
@@ -51,7 +52,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{ text: "Get My Free Quote", href: "/contact" },
|
||||
{ text: "Request a free estimate", href: "/estimate" },
|
||||
{ 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"
|
||||
@@ -65,7 +66,7 @@ export default function LandingPage() {
|
||||
title="The CleanScene Difference"
|
||||
titleClassName="text-[#0a7039]"
|
||||
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>
|
||||
@@ -110,7 +111,7 @@ export default function LandingPage() {
|
||||
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={[
|
||||
{ text: "Request My Free Quote", href: "/contact" },
|
||||
{ text: "Request a free estimate", href: "/estimate" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -118,12 +119,13 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }, { label: "Contact Us", href: "/contact-us" }] },
|
||||
{ items: [{ label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene Restroom Rentals"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213452447-mwunnkf5.png"
|
||||
logoImageClassName="scale-75"
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user