From 8001acd75874d6070e487b051c4fc57c67fb543b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 15:50:52 +0000 Subject: [PATCH] Bob AI: Update the pricing section to include exactly three tiers with the specified nam --- src/pages/HomePage.tsx | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 30ea3e7..8236ab8 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -160,8 +160,8 @@ export default function HomePage() { description="Quality service that fits your needs." plans={[ { - tag: "Essential", - price: "$150", + tag: "Basic Detail", + price: "$100", description: "Standard wash & interior freshen.", features: [ "Hand Wash", @@ -174,8 +174,8 @@ export default function HomePage() { }, }, { - tag: "Full Detailing", - price: "$300", + tag: "Deluxe", + price: "$190", highlight: "Most Popular", description: "Complete top to bottom detail.", features: [ @@ -188,6 +188,20 @@ export default function HomePage() { href: "#contact", }, }, + { + tag: "Premium", + price: "$365", + description: "The ultimate detailing experience.", + features: [ + "Paint Correction", + "Ceramic Coating", + "Engine Bay Cleaning", + ], + primaryButton: { + text: "Book", + href: "#contact", + }, + }, ]} />