import { AppShell } from "../../../components/app-shell"; const plans = [ { name: "Free", price: "$0", cadence: "forever", highlight: "Connect up to 2 accounts", features: [ "2 connected accounts", "30-day transaction history", "Basic exports", "Email support" ] }, { name: "Pro Monthly", price: "$9", cadence: "per month", highlight: "Unlimited connected accounts", features: [ "Unlimited accounts", "12-month history", "Advanced exports + rules", "Priority support" ] }, { name: "Pro Annual", price: "$90", cadence: "per year", highlight: "Two months free", features: [ "Unlimited accounts", "12-month history", "Advanced exports + rules", "Priority support" ] } ]; export default function SubscriptionPage() { return (

Current plan

Free Plan

Free includes up to two connected accounts. Upgrade any time to unlock unlimited accounts and advanced automation.

{plans.map((plan) => (

{plan.name}

{plan.price} {plan.cadence}

{plan.highlight}

    {plan.features.map((feature) => (
  • {feature}
  • ))}
))}
); }