diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 807f060..6bc28fe 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -24,7 +24,7 @@ export default function CheckoutPage() { borderRadius="soft" contentWidth="small" sizing="largeSmallSizeMediumTitles" - background="grid" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="flat" secondaryButtonStyle="layered" @@ -50,51 +50,22 @@ export default function CheckoutPage() { animationType="slide-up" plans={[ { - id: "basic", - tag: "Basic", - tagIcon: undefined, - price: "$45", - period: "/1h", - description: "Perfect for beginners learning fundamentals and core mechanics", - button: { text: "Proceed to Checkout", href: "/confirmation" }, - featuresTitle: "What's Included:", - features: [ - "Fundamentals coaching session", - "Basic drill plan for practice", - "1 follow-up message with tips", - ], + id: "basic", tag: "Basic", tagIcon: undefined, + price: "$45", period: "/1h", description: "Perfect for beginners learning fundamentals and core mechanics", button: { text: "Proceed to Checkout", href: "/confirmation" }, + featuresTitle: "What's Included:", features: [ + "Fundamentals coaching session", "Basic drill plan for practice", "1 follow-up message with tips"], }, { - id: "immediate", - tag: "Immediate", - tagIcon: undefined, - price: "$75", - period: "/1h", - description: "For intermediate players wanting faster feedback and detailed analysis", - button: { text: "Proceed to Checkout", href: "/confirmation" }, - featuresTitle: "What's Included:", - features: [ - "Faster feedback during session", - "Tailored drills for your style", - "Short VOD notes (5-10 min review)", - "3 follow-up messages", - ], + id: "immediate", tag: "Immediate", tagIcon: undefined, + price: "$75", period: "/1h", description: "For intermediate players wanting faster feedback and detailed analysis", button: { text: "Proceed to Checkout", href: "/confirmation" }, + featuresTitle: "What's Included:", features: [ + "Faster feedback during session", "Tailored drills for your style", "Short VOD notes (5-10 min review)", "3 follow-up messages"], }, { - id: "pro", - tag: "Pro", - tagIcon: undefined, - price: "$120", - period: "/1h", - description: "For serious competitive players aiming for tournament-level performance", - button: { text: "Proceed to Checkout", href: "/confirmation" }, - featuresTitle: "What's Included:", - features: [ - "Full VOD review (complete game analysis)", - "Custom training routine (2+ weeks)", - "Matchup planning vs specific opponents", - "Unlimited follow-ups for 7 days", - ], + id: "pro", tag: "Pro", tagIcon: undefined, + price: "$120", period: "/1h", description: "For serious competitive players aiming for tournament-level performance", button: { text: "Proceed to Checkout", href: "/confirmation" }, + featuresTitle: "What's Included:", features: [ + "Full VOD review (complete game analysis)", "Custom training routine (2+ weeks)", "Matchup planning vs specific opponents", "Unlimited follow-ups for 7 days"], }, ]} /> @@ -104,7 +75,7 @@ export default function CheckoutPage() {