From 3b3107620c35cf6548f722e77d06b2a08c87af51 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 13:11:00 +0000 Subject: [PATCH] Update src/app/page.tsx --- 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 57e441e..cafb877 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -106,9 +106,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { id: "p1", price: "$0", name: "Starter", buttons: [{ text: "Download", href: "#" }], features: ["Real-time monitor", "Basic analytics"] }, - { id: "p2", price: "$9/mo", name: "Pro", buttons: [{ text: "Start Pro", href: "#" }], features: ["Advanced diagnostics", "Cloud sync", "Priority Support"] }, - { id: "p3", price: "$19/mo", name: "Team", buttons: [{ text: "Start Team", href: "#" }], features: ["Multiple devices", "API Access", "Full Management"] }, + { id: "p1", price: "$0", name: "Starter", buttons: [{ text: "Download", onClick: () => console.log('Initiating download...') }], features: ["Real-time monitor", "Basic analytics"] }, + { id: "p2", price: "$9/mo", name: "Pro", buttons: [{ text: "Start Pro", onClick: () => console.log('Redirecting to secure payment...') }], features: ["Advanced diagnostics", "Cloud sync", "Priority Support"] }, + { id: "p3", price: "$29/mo", name: "Gaming Assistant", buttons: [{ text: "Subscribe", onClick: () => console.log('Redirecting to Gaming Assistant payment...') }], features: ["Everything in Pro", "Gaming FPS Boost", "Thermal Optimization", "Priority GPU Sync"] }, ]} title="Simple Pricing" description="Choose the monitoring plan that works for you." -- 2.49.1