diff --git a/src/app/page.tsx b/src/app/page.tsx index abe7545..e009753 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -98,8 +98,8 @@ export default function LandingPage() { title="Pricing Plans" description="Choose the plan that suits you best." plans={[ - { id: "p1", price: "$9/mo", features: ["Ad-free experience", "Community access"] }, - { id: "p2", price: "$19/mo", features: ["4K Streaming", "Exclusive content", "Early access"] } + { id: "p1", price: "$9/mo", badge: "Basic", subtitle: "Essential plan", features: ["Ad-free experience", "Community access"], buttons: [{ text: "Get Started" }] }, + { id: "p2", price: "$19/mo", badge: "Pro", subtitle: "Power user", features: ["4K Streaming", "Exclusive content", "Early access"], buttons: [{ text: "Go Pro" }] } ]} />