Update src/app/page.tsx

This commit is contained in:
2026-05-03 18:25:01 +00:00
parent b87b641230
commit 47ef11c861

View File

@@ -9,7 +9,6 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -31,7 +30,6 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" }, { name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Request a free estimate", id: "/estimate" }, { name: "Request a free estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" }, { name: "Contact us", id: "/contact-us" },
]} ]}
@@ -73,19 +71,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="split"
title="Transparent Pricing"
description="Simple, daily rental options tailored to your event length."
plans={[
{ id: "basic", title: "Weekend Warrior", price: "$1,200", period: "per weekend", features: ["Delivery & Setup", "Eco-friendly supplies", "Climate controlled"], button: { text: "Get Estimate" } },
{ id: "pro", title: "Event Master", price: "$2,500", period: "per week", features: ["Daily Maintenance", "Full onsite support", "All inclusive supplies"], button: { text: "Get Estimate" } }
]}
/>
</div>
<div id="fleet-preview" data-section="fleet-preview"> <div id="fleet-preview" data-section="fleet-preview">
<ProductCardTwo <ProductCardTwo
animationType="slide-up" animationType="slide-up"
@@ -134,7 +119,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Request a free estimate", href: "/estimate" }] }, { items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Request a free estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] }, { items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy policy", href: "#" }, { label: "Terms", href: "#" }] },
]} ]}
logoText="CleanScene" logoText="CleanScene"