From eddac8d074f7509af15b71d44d6c07c8c23212bf Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Tue, 27 Jan 2026 19:19:06 +0000 Subject: [PATCH] Content edit: make prices lower by 50% --- 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 2daf6bd..727d90d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -110,7 +110,7 @@ export default function LandingPage() { plans={[ { id: "1", badge: "Foundation", badgeIcon: BookOpen, - price: "$299", subtitle: "Perfect for beginners", buttons: [ + price: "$74.50", subtitle: "Perfect for beginners", buttons: [ { text: "Get Started", href: "contact" }, { text: "Learn More", href: "#" } ], @@ -120,7 +120,7 @@ export default function LandingPage() { }, { id: "2", badge: "Professional", badgeIcon: Code, - price: "$599", subtitle: "Best for career changers", buttons: [ + price: "$149.50", subtitle: "Best for career changers", buttons: [ { text: "Enroll Now", href: "contact" }, { text: "Learn More", href: "#" } ], @@ -130,7 +130,7 @@ export default function LandingPage() { }, { id: "3", badge: "Elite", badgeIcon: Zap, - price: "$999", subtitle: "Comprehensive mastery", buttons: [ + price: "$249.50", subtitle: "Comprehensive mastery", buttons: [ { text: "Premium Access", href: "contact" }, { text: "Learn More", href: "#" } ], -- 2.49.1