Compare commits
93 Commits
version_99
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| ceb4148a2a | |||
| d7e5cb077a | |||
| 0bfb00646e | |||
| 09c4d6035d | |||
| 43454ece91 | |||
| 0cec1a35c6 | |||
| e44e652fdb | |||
| 5926bb6e74 | |||
| d584c94544 | |||
| d698ed4a85 | |||
| 2388caaf4c | |||
| 38ab6f2377 | |||
| aeff86eeb2 | |||
| 486cf401cc | |||
| b9f2b6c4ca | |||
| bc23d26bc2 | |||
| 34f36bdc0a | |||
| 46328fe657 | |||
| d48d45ef8a | |||
| 6afdb67983 | |||
| 5b596f0de7 | |||
| cf6961c192 | |||
| d6273cd4fa | |||
| 2d5148143a | |||
| 104bfe419b | |||
| 712e9f0ea2 | |||
| 0b58427c1e | |||
| 283507a37b | |||
| 12b9e9e5f6 | |||
| c72591875e | |||
| 40e22c6c1f | |||
| 8d154db16e | |||
| c3b2b5cdfa | |||
| 3a98505d9c | |||
| 4a7177fd79 | |||
| 84f3f14cf1 | |||
| 9b7ee252b6 | |||
| 5c4d1ae4e5 | |||
| 0bdb5036e6 | |||
| d35854958d | |||
| ebab63930b | |||
| aabb73e7a3 | |||
| 0137efcda2 | |||
| 88706d72ee | |||
| 949a142b2a | |||
| 80c2597e5e | |||
| b42888c791 | |||
| 0cc01e96cd | |||
| 79e3484559 | |||
| 395cdee793 | |||
| 9e0f0462cd | |||
| c2c07572ca | |||
| 7c17efe05f | |||
| 517442bea7 | |||
| f25e6eb562 | |||
| b072272ef8 | |||
| 98eb4035ee | |||
| 21cdc6ecb5 | |||
| fc242e1ab6 | |||
| ca0fecf635 | |||
| 78929ceacc | |||
| f7f10325c4 | |||
| 6b9cc2444b | |||
| 1b7c0a0734 | |||
| 893cc5ed5f | |||
| 5580f63bd6 | |||
| ec9912a818 | |||
| e6298645ed | |||
| 1fbda10e28 | |||
| 016408f901 | |||
| cd7167673c | |||
| 587e6cedf9 | |||
| 16118ea611 | |||
| 4ac7fcebf9 | |||
| cddbfefcda | |||
| 4fdad95e9e | |||
| 8a4dc74b99 | |||
| c75cb8cfc7 | |||
| c222f40700 | |||
| 15cebd7601 | |||
| ba1f231a56 | |||
| e7187d374d | |||
| e075435f8d | |||
| 57e8f10fd1 | |||
| 79a4733b86 | |||
| f63da003cc | |||
| e30b45983b | |||
| 6e5cb66d39 | |||
| 8419101d74 | |||
| 53dc657df5 | |||
| 5d904baa8d | |||
| ef8dd49a30 | |||
| 75f7d7536c |
@@ -2,34 +2,37 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
|
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||||
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
|
import { Shield, Sparkles, UserCheck, CalendarDays, ClipboardList } from 'lucide-react';
|
||||||
|
|
||||||
export default function FleetPage() {
|
export default function FleetPage() {
|
||||||
const [popupContent, setPopupContent] = useState<string | null>(null);
|
const [popupContent, setPopupContent] = useState<{title: string, body: string} | null>(null);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="expand-hover"
|
defaultButtonVariant="expand-hover"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSmallSizeLargeTitles"
|
sizing="medium"
|
||||||
background="blurBottom"
|
background="circleGradient"
|
||||||
cardStyle="soft-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Our Premium Fleet", id: "/fleet" },
|
{ name: "Our Premium Fleet", id: "/fleet" },
|
||||||
{ name: "Contact us", id: "/contact-us" },
|
{ name: "Contact us", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="CleanScene"
|
brandName="CleanScene"
|
||||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777837799704-b8guhfm1.png"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777837799704-b8guhfm1.png"
|
||||||
@@ -39,8 +42,34 @@ export default function FleetPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroBillboard
|
||||||
|
title="Our Premium Fleet"
|
||||||
|
description="Discover our range of luxury mobile restroom trailers, meticulously designed for comfort and elegance."
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=1"
|
||||||
|
imageAlt="Fleet"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="features" data-section="features">
|
||||||
|
<FeatureCardSeven
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
title="Why Choose Our Fleet"
|
||||||
|
description="Quality, comfort, and reliability in every trailer."
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=1", imageAlt: "Climate Controlled", title: "Climate Controlled", description: "Stay comfortable in any weather with our advanced climate control systems." },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=1", imageAlt: "Modern Finishings", title: "Modern Finishings", description: "Elegant interior designs that elevate the look and feel of your event." },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=1", imageAlt: "Professional Support", title: "Professional Support", description: "We handle delivery, setup, and maintenance so you don't have to." }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="fleet-preview" data-section="fleet-preview">
|
<div id="fleet-preview" data-section="fleet-preview">
|
||||||
<ProductCardTwo
|
<ProductCardOne
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split-description"
|
textboxLayout="split-description"
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
@@ -48,28 +77,39 @@ export default function FleetPage() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1",
|
||||||
brand: "CleanScene",
|
|
||||||
name: "3 Station, Private Floorplan Restroom Trailer",
|
name: "3 Station, Private Floorplan Restroom Trailer",
|
||||||
price: "$1,375 per day",
|
price: "$1,375 per day",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=2", onProductClick: () => setPopupContent({
|
||||||
reviewCount: "128",
|
title: "3-Station Private Restroom Trailer", body: "Luxury 3-station trailer."
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=1", onProductClick: () => setPopupContent("Elevate your boutique event with our 3 station premium restroom trailer, the premier choice for weddings and VIP gatherings in Northeast Wisconsin. It is specifically designed for maximum privacy, featuring three completely individual restrooms. Each climate-controlled restroom includes a flushable toilet, a vanity with running water, and high-end finishes that mirror a quality home bathroom. By choosing American-made equipment, we ensure a superior level of reliability for your event. Based at our Green Bay location, we provide prompt delivery and professional setup to ensure your guests enjoy a premium, private experience from start to finish.")
|
})
|
||||||
},
|
},
|
||||||
{ id: "p2", brand: "CleanScene", name: "4 Station, Community Floorplan Restroom Trailer", price: "$1,825 per day", rating: 5, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832470445-mr4qosuh.png?_wi=1" },
|
{
|
||||||
|
id: "p2",
|
||||||
|
name: "4 Station, Community Floorplan Restroom Trailer",
|
||||||
|
price: "$1,825 per day",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832470445-mr4qosuh.png", onProductClick: () => setPopupContent({
|
||||||
|
title: "4-Station Community Restroom Trailer", body: "Rustic elegance 4-station trailer."
|
||||||
|
})
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "p3",
|
||||||
|
name: "Standard Trailer",
|
||||||
|
price: "$900 per day",
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777844457157-k1f0t370.png"
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
title="Our premium fleet"
|
title="Our full fleet overview"
|
||||||
textBoxTitleClassName="text-[#0a7039]"
|
description="Explore our detailed product listings for more information."
|
||||||
description="Premium, climate-controlled mobile restrooms for every event size. Multi-day rental discounts available."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{popupContent && (
|
{popupContent && (
|
||||||
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50 backdrop-blur-sm" onClick={() => setPopupContent(null)}>
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50 backdrop-blur-sm" onClick={() => setPopupContent(null)}>
|
||||||
<div className="bg-white p-8 rounded-lg max-w-lg shadow-xl" onClick={(e) => e.stopPropagation()}>
|
<div className="bg-white p-8 rounded-lg max-w-2xl shadow-xl overflow-y-auto max-h-[90vh]" onClick={(e) => e.stopPropagation()}>
|
||||||
<h3 className="text-xl font-bold mb-4">3-Station Trailer Details</h3>
|
<h3 className="text-2xl font-bold mb-4 whitespace-pre-wrap">{popupContent.title}</h3>
|
||||||
<p className="text-gray-700 leading-relaxed">{popupContent}</p>
|
<p className="text-gray-700 leading-relaxed whitespace-pre-wrap">{popupContent.body}</p>
|
||||||
<button
|
<button
|
||||||
className="mt-6 bg-[#0a7039] text-white px-4 py-2 rounded"
|
className="mt-6 bg-black text-white px-6 py-2 rounded transition"
|
||||||
onClick={() => setPopupContent(null)}
|
onClick={() => setPopupContent(null)}
|
||||||
>
|
>
|
||||||
Close
|
Close
|
||||||
@@ -79,15 +119,14 @@ export default function FleetPage() {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseCard
|
||||||
|
logoText="CleanScene"
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
|
{ title: "Links", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] }
|
||||||
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
|
|
||||||
]}
|
]}
|
||||||
logoText=""
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,8 +15,8 @@ import { Open_Sans } from "next/font/google";
|
|||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Luxury Restroom Trailer Rentals in Northeast Wisconsin | CleanScene',
|
title: 'Our Premium Fleet | CleanScene',
|
||||||
description: 'Premium mobile restroom trailer rentals for weddings, corporate events & private estates across Green Bay, Appleton & Door County. Get a free estimate today.',
|
description: 'Discover our range of luxury mobile restroom trailers, meticulously designed for comfort and elegance.',
|
||||||
robots: {
|
robots: {
|
||||||
"index": true,
|
"index": true,
|
||||||
"follow": true
|
"follow": true
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
|||||||
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]"
|
titleClassName="text-[#0a7039]"
|
||||||
description="Our premium restroom trailers offer the comfort of a quality interior space to provide a modern hospitality experience."
|
description="Proudly serving Northeast Wisconsin - from the Fox Valley to Door County, Shawano to the Lakeshore, and Green Bay. Our premium restroom trailers offer the comfort of a quality interior space to provide a modern hospitality experience."
|
||||||
kpis={[
|
kpis={[
|
||||||
{ value: "10+", label: "Counties Served" },
|
{ value: "10+", label: "Counties Served" },
|
||||||
{ value: "100%", label: "Guest Comfort" },
|
{ value: "100%", label: "Guest Comfort" },
|
||||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
|||||||
{ text: "Get My Free Estimate", href: "/estimate" },
|
{ text: "Get My Free Estimate", href: "/estimate" },
|
||||||
{ text: "View The Fleet", href: "/fleet" },
|
{ text: "View The Fleet", href: "/fleet" },
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777135032652-q27squi7.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777135032652-q27squi7.jpg?_wi=1"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -66,7 +66,8 @@ 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 and experience.", "Our premium restroom trailers offer the comfort of a quality interior space to provide a modern hospitality experience.."
|
"Transform the standard event experience by providing luxury sanitation facilities that your guests will truly appreciate.",
|
||||||
|
"Hiring premium restroom trailers means you are ensuring immaculate comfort and sophisticated design for your wedding, corporate gathering, or special event, removing any stress about guest facilities."
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -78,13 +79,13 @@ 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 Floorplan Restroom Trailer", price: "$1,375 per day", rating: 5, reviewCount: "128", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=2", onProductClick: () => window.location.href = "/fleet/p1" },
|
{ id: "p1", brand: "CleanScene", name: "3 Station, Private Floorplan Restroom Trailer", price: "$1,375 per day", rating: 5, reviewCount: "128", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832277795-ebq2l26f.png?_wi=2", onProductClick: () => window.location.href = "/fleet" },
|
||||||
{ id: "p2", brand: "CleanScene", name: "4 Station, Community Floorplan Restroom Trailer", price: "$1,825 per day", rating: 5, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832470445-mr4qosuh.png?_wi=1", onProductClick: () => window.location.href = "/fleet/p2" },
|
{ id: "p2", brand: "CleanScene", name: "4 Station, Community Floorplan Restroom Trailer", price: "$1,825 per day", rating: 5, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777832470445-mr4qosuh.png?_wi=1", onProductClick: () => window.location.href = "/fleet" },
|
||||||
]}
|
]}
|
||||||
title="Our Premium Fleet"
|
title="Our Premium Fleet"
|
||||||
textBoxTitleClassName="text-[#0a7039]"
|
textBoxTitleClassName="text-[#0a7039]"
|
||||||
description="Made-in-USA trailers designed for peak comfort."
|
description="Made-in-USA trailers designed for peak comfort."
|
||||||
buttons={[{ text: "View Details" }]}
|
buttons={[{ text: "View Full Specifications", href: "/fleet" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -96,11 +97,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Let us elevate your event"
|
title="Let us elevate your event"
|
||||||
cardTitleClassName="text-[#0a7039]"
|
cardTitleClassName="text-[#0a7039]"
|
||||||
description="Our premium rental fleet is designed to fit seamlessly into any event and leave a lasting impression."
|
description="Our premium rental fleet is designed to fit seamlessly into any Northeast Wisconsin event and leave a lasting impression."
|
||||||
features={[
|
features={[
|
||||||
{ title: "Weddings & Private Parties", description: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777134554820-hv8fxndc.jpg" },
|
{ title: "Weddings & Private Parties", description: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777134554820-hv8fxndc.jpg?_wi=2" },
|
||||||
{ title: "Community Events", description: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777134554820-rdizvwfd.jpg?_wi=2" },
|
{ title: "Community Events", description: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777134554820-rdizvwfd.jpg?_wi=2" },
|
||||||
{ title: "Corporate Events", description: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777134554820-klkyjyqk.jpg" },
|
{ title: "Corporate Events", description: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777134554820-klkyjyqk.jpg?_wi=2" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
export default function PricingPage() {
|
export default function PricingPage() {
|
||||||
@@ -37,7 +37,7 @@ export default function PricingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardTwo
|
<PricingCardEight
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
|
|||||||
57
src/app/privacy/page.tsx
Normal file
57
src/app/privacy/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function PrivacyPage() {
|
||||||
|
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">
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Our Premium Fleet", id: "/fleet" },
|
||||||
|
{ name: "Contact us", id: "/contact-us" },
|
||||||
|
]}
|
||||||
|
brandName="CleanScene"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cr9i1HT3S4vLNiV9XJ6S4fk81W/uploaded-1777837799704-b8guhfm1.png"
|
||||||
|
logoAlt="CleanScene Logo"
|
||||||
|
button={{ text: "Get My Free Estimate", href: "/estimate" }}
|
||||||
|
className="py-2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="content" className="py-20 px-6 max-w-4xl mx-auto">
|
||||||
|
<h1 className="text-4xl font-bold mb-8 text-[#0a7039]">Privacy Policy</h1>
|
||||||
|
<div className="prose max-w-none">
|
||||||
|
<p>Welcome to CleanScene. This Privacy Policy explains how we collect, use, and protect your information when you visit our website or use our services.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
columns={[
|
||||||
|
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
|
||||||
|
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
|
||||||
|
]}
|
||||||
|
logoText=""
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user