Update src/app/fleet/page.tsx

This commit is contained in:
2026-05-03 18:24:17 +00:00
parent 002f2637f7
commit 274b37d486

View File

@@ -27,6 +27,7 @@ export default function FleetPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Estimate", id: "/estimate" },
{ name: "Contact", id: "/contact-us" },
]}
@@ -52,7 +53,7 @@ export default function FleetPage() {
<FooterBaseCard
logoText="CleanScene"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }] },
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Support", items: [{ label: "Estimate", href: "/estimate" }, { label: "Contact", href: "/contact-us" }] },
]}
/>