Update src/app/fleet/page.tsx

This commit is contained in:
2026-04-25 16:18:08 +00:00
parent 6f12f95c16
commit 1f8320771f

View File

@@ -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,29 +60,21 @@ 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>