Compare commits
21 Commits
version_4
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| b4904a3cc6 | |||
| be0417f192 | |||
| a528e08977 | |||
| 21b3e4ed4a | |||
| ae36a42a21 | |||
| 118131971e | |||
| 70e602df0a | |||
| 3f2df13bef | |||
| 12bb71feb6 | |||
| 894dd556c1 | |||
| eef50568b3 | |||
| 335f12b5df | |||
| ca299742e7 | |||
| fad849c52c | |||
| ba58ad91e1 | |||
| fa081ad32b | |||
| b9068f2ff7 | |||
| 1f8320771f | |||
| 6f12f95c16 | |||
| c07ca560ff | |||
| d50de78a41 |
@@ -25,19 +25,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Fleet",
|
||||
id: "/fleet",
|
||||
},
|
||||
name: "Fleet", id: "/fleet"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="CleanScene"
|
||||
brandName="CleanScene Restroom Rentals"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -48,22 +42,14 @@ export default function LandingPage() {
|
||||
description="Tell us about your event. We typically respond within 4 business hours."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Full Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Full Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Email Address", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us about your event details...",
|
||||
rows: 4,
|
||||
name: "message", placeholder: "Tell us about your event details...", rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-event-manager-banquet-hall_23-2148085332.jpg"
|
||||
/>
|
||||
@@ -75,32 +61,24 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Fleet",
|
||||
href: "/fleet",
|
||||
},
|
||||
label: "Fleet", href: "/fleet"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
logoText="CleanScene Restroom Rentals"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -25,19 +25,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Fleet",
|
||||
id: "/fleet",
|
||||
},
|
||||
name: "Fleet", id: "/fleet"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="CleanScene"
|
||||
brandName="CleanScene Restroom Rentals"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,23 +45,11 @@ export default function LandingPage() {
|
||||
description="Explore our complete range of high-end mobile restroom solutions."
|
||||
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", name: "2-Station Classic", price: "$750/day", 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/free-photo/close-up-bathtub-with-faucet_1203-1500.jpg",
|
||||
},
|
||||
id: "f2", name: "3-Station Executive", price: "$1200/day", imageSrc: "http://img.b2bpic.net/free-photo/close-up-bathtub-with-faucet_1203-1500.jpg"},
|
||||
{
|
||||
id: "f3",
|
||||
name: "5-Station Luxury Suite",
|
||||
price: "$1800/day",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-bathroom-space-with-modern-style-furniture_23-2150864622.jpg",
|
||||
},
|
||||
id: "f3", name: "5-Station Luxury Suite", price: "$1800/day", imageSrc: "http://img.b2bpic.net/free-photo/small-bathroom-space-with-modern-style-furniture_23-2150864622.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -78,32 +60,24 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Fleet",
|
||||
href: "/fleet",
|
||||
},
|
||||
label: "Fleet", href: "/fleet"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
logoText="CleanScene Restroom Rentals"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Crown } from "lucide-react";
|
||||
|
||||
@@ -36,7 +36,7 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="CleanScene"
|
||||
brandName="CleanScene Restroom Rentals"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -45,16 +45,16 @@ export default function LandingPage() {
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
title="Set the Scene for a Flawless Event"
|
||||
description="Premium mobile restroom trailers delivered, staged, and serviced with the elegance of a boutique hotel. Elevate your Wisconsin event."
|
||||
description="Our trailers offer the comfort of an interior space with the quality of modern hospitality."
|
||||
tag="Luxury Event Standards"
|
||||
tagIcon={Crown}
|
||||
kpis={[
|
||||
{
|
||||
value: "10+", label: "Years Experience"},
|
||||
{
|
||||
value: "500+", label: "Events Served"},
|
||||
value: "10+", label: "Counties Served"},
|
||||
{
|
||||
value: "100%", label: "Guest Comfort"},
|
||||
{
|
||||
value: "24/7", label: "Service"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
@@ -69,7 +69,7 @@ export default function LandingPage() {
|
||||
{
|
||||
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/free-photo/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/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"},
|
||||
{
|
||||
@@ -109,36 +109,33 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1", brand: "CleanScene", name: "3-Station Private Suite", price: "Quote on Request", rating: 5,
|
||||
reviewCount: "24", 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: 0,
|
||||
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: "12", imageSrc: "http://img.b2bpic.net/free-photo/modern-bathroom-with-big-mirror_1203-1497.jpg"},
|
||||
id: "p2", brand: "CleanScene", name: "Executive Comfort Series", price: "Quote on Request", rating: 0,
|
||||
reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/modern-bathroom-with-big-mirror_1203-1497.jpg"},
|
||||
]}
|
||||
title="Our Curated Fleet"
|
||||
description="Made-in-USA trailers designed for peak comfort."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
title="Modern Hospitality Standards"
|
||||
description="Every detail of our rental fleet is meticulously maintained to ensure your event leaves a lasting impression."
|
||||
features={[
|
||||
{
|
||||
id: "1", name: "Sarah J.", handle: "Bride", testimonial: "The trailers were immaculate. My guests couldn't stop talking about them.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-arch-seats_1303-10480.jpg"},
|
||||
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"},
|
||||
{
|
||||
id: "2", name: "Mark D.", handle: "Event Planner", testimonial: "Professional service from start to finish. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-standing-near-window-talking-mobile-phone_23-2147974633.jpg"},
|
||||
title: "Luxury Finishes", description: "Designer lighting, high-end vanity surfaces, and elegant trim throughout our trailers.", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-concept-with-details_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/interior-design-concept-with-details_23-2148777121.jpg", buttonText: "Learn More"},
|
||||
{
|
||||
id: "3", name: "Emily R.", handle: "Estate Owner", testimonial: "CleanScene adds a level of sophistication we've never had before.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-gorgeous-couple-embracing-each-other-while-holding-glasses-wine-hands_482257-11118.jpg"},
|
||||
{
|
||||
id: "4", name: "Tom K.", handle: "Festival Producer", testimonial: "Reliable, clean, and exactly what we needed for the crowds.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-young-people-partying-together_23-2149739854.jpg"},
|
||||
{
|
||||
id: "5", name: "Jessica W.", handle: "Wedding Planner", testimonial: "Flawless delivery and staging. Truly elevated the guest experience.", imageSrc: "http://img.b2bpic.net/free-photo/female-wedding-planner-working-ceremony_23-2150167220.jpg"},
|
||||
title: "White-Glove Setup", description: "Our professional team handles every step from delivery to onsite staging to ensure perfection.", imageSrc: "http://img.b2bpic.net/free-photo/professional-team-working-together_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/professional-team-working-together_23-2148777121.jpg", buttonText: "Learn More"},
|
||||
]}
|
||||
title="Trusted by Wisconsin Events"
|
||||
description="See why top wedding planners and corporate event organizers trust us."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -147,7 +144,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
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 staging 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."
|
||||
buttons={[
|
||||
{
|
||||
text: "Request My Free Quote", href: "/contact"},
|
||||
@@ -175,10 +172,10 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="CleanScene"
|
||||
logoText="CleanScene Restroom Rentals"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user