Compare commits
42 Commits
version_37
...
version_49
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 |
@@ -26,8 +26,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Request a Free Estimate", id: "/estimate" },
|
||||
{ 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"
|
||||
@@ -53,7 +52,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
|
||||
@@ -26,8 +26,7 @@ export default function EstimatePage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Request a Free Estimate", id: "/estimate" },
|
||||
{ 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"
|
||||
@@ -38,16 +37,18 @@ export default function EstimatePage() {
|
||||
<div id="estimate-form" data-section="estimate-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Get Your Free Estimate"
|
||||
title="Request a free estimate"
|
||||
titleClassName="text-[#0a7039]"
|
||||
description="Fill out the details below, and we will provide a comprehensive quote for your event."
|
||||
description="Tell us about your event. We typically respond within 24 business hours."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "full_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: "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: "details", placeholder: "Additional event details or specific requirements...", rows: 5 }}
|
||||
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>
|
||||
@@ -55,7 +56,7 @@ export default function EstimatePage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
|
||||
@@ -6,7 +6,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function FleetPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -26,8 +26,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Request a Free Estimate", id: "/estimate" },
|
||||
{ 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"
|
||||
@@ -41,13 +40,12 @@ export default function LandingPage() {
|
||||
textboxLayout="split-description"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
title="Our Full Fleet Inventory"
|
||||
title="Our premium mobile restroom fleet"
|
||||
textBoxTitleClassName="text-[#0a7039]"
|
||||
description="Explore our complete range of high-end mobile restroom solutions."
|
||||
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", brand: "CleanScene", name: "3 Station, Private Floorplan Trailer", price: "$1,375 per 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: "4 Station, Community Floorplan Trailer", price: "$1,825 per day", rating: 5, reviewCount: "10+ reviews", imageSrc: "http://img.b2bpic.net/close-up-bathtub-with-faucet_1203-1500.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -55,7 +53,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
|
||||
@@ -30,8 +30,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Fleet", id: "/fleet" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Request a Free Estimate", id: "/estimate" },
|
||||
{ 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"
|
||||
@@ -119,7 +118,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
|
||||
Reference in New Issue
Block a user