From 7f3c411cf62c1a937b4727f98f9c0888c7f85602 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Fri, 30 Jan 2026 14:34:02 +0200 Subject: [PATCH] Bob AI: make prices in Flexible Learning Plans section low... --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9655136..e0d5ee3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -118,7 +118,7 @@ export default function LandingPage() { description="Choose the perfect program for your goals and budget" plans={[ { - id: "starter", price: "$499", name: "Starter Course", buttons: [ + id: "starter", price: "$349.3", name: "Starter Course", buttons: [ { text: "Get Started", href: "contact" }, { text: "Learn More", href: "contact" } ], @@ -128,7 +128,7 @@ export default function LandingPage() { }, { id: "professional", badge: "Most Popular", badgeIcon: Sparkles, - price: "$1,299", name: "Professional Program", buttons: [ + price: "$909.3", name: "Professional Program", buttons: [ { text: "Enroll Now", href: "contact" }, { text: "Schedule Call", href: "contact" } ], @@ -137,7 +137,7 @@ export default function LandingPage() { ] }, { - id: "enterprise", price: "$2,499", name: "Enterprise Bootcamp", buttons: [ + id: "enterprise", price: "$1,749.3", name: "Enterprise Bootcamp", buttons: [ { text: "Start Bootcamp", href: "contact" }, { text: "Contact Sales", href: "contact" } ],