Compare commits
42 Commits
version_33
...
version_44
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 |
@@ -26,7 +26,7 @@ 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: "Free Estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="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"
|
||||||
@@ -52,12 +52,13 @@ 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" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Free Estimate", href: "/estimate" }] },
|
||||||
{ 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"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
logoImageClassName="scale-75"
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
71
src/app/estimate/page.tsx
Normal file
71
src/app/estimate/page.tsx
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
"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: "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="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: "Free Estimate", href: "/estimate" }] },
|
||||||
|
{ 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,7 +26,7 @@ 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: "Free Estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="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"
|
||||||
@@ -54,12 +54,13 @@ 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" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Free Estimate", href: "/estimate" }] },
|
||||||
{ 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"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
logoImageClassName="scale-75"
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ 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: "Free Estimate", id: "/estimate" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="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"
|
||||||
@@ -51,7 +51,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get My Free Quote", href: "/contact" },
|
{ text: "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"
|
||||||
@@ -65,7 +65,7 @@ export default function LandingPage() {
|
|||||||
title="The CleanScene Difference"
|
title="The CleanScene Difference"
|
||||||
titleClassName="text-[#0a7039]"
|
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>
|
||||||
@@ -110,7 +110,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."
|
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]"
|
textClassName="text-[#0a7039]"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Request My Free Quote", href: "/contact" },
|
{ text: "Free Estimate", href: "/estimate" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -118,12 +118,13 @@ 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" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Free Estimate", href: "/estimate" }] },
|
||||||
{ 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"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777213847237-f7u1y0mi.png"
|
||||||
logoImageClassName="scale-75"
|
logoClassName="text-white"
|
||||||
|
logoImageClassName="scale-75 hidden"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user