From e0e7231dcc7c7710610721eae393eac1c899ca16 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 21:28:04 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 940bbd3..0f55eff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -118,12 +118,10 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - title="Pricing Plans" - description="Affordable packages for all your landscaping needs." plans={[ - { title: "Basic", price: "$50", features: ["Mowing", "Edging"] }, - { title: "Premium", price: "$100", features: ["Mowing", "Edging", "Trimming"] }, - { title: "Elite", price: "$150", features: ["Mowing", "Edging", "Trimming", "Irrigation"] } + { name: "Basic", price: "$50", features: ["Mowing", "Edging"] }, + { name: "Premium", price: "$100", features: ["Mowing", "Edging", "Trimming"] }, + { name: "Elite", price: "$150", features: ["Mowing", "Edging", "Trimming", "Irrigation"] } ]} /> -- 2.49.1