export const DEFAULT_PLANS: Array<{
  code: string;
  name: string;
  priceMonthly: number;
  currency: string;
  features: Array<{ k: string; v: string }>;
}> = [
  {
    code: 'BASIC',
    name: 'Basic',
    priceMonthly: 0,
    currency: 'INR',
    features: [
      { k: 'Teams and Roles', v: 'No' },
      { k: 'Reviews', v: 'Cashi Only' },
      { k: 'Add Stores', v: 'Upto 1' },
      { k: 'Coupons', v: '30/Month' },
      { k: 'AI Coupons', v: 'No' },
      { k: 'Lucky Draw', v: 'No' },
      { k: 'Social Connection', v: 'Insta/Google' },
      { k: 'Customer Message', v: 'One By One' },
      { k: 'Dashboard', v: 'Basic' },
    ],
  },
  {
    code: 'GROWTH',
    name: 'Growth',
    priceMonthly: 999,
    currency: 'INR',
    features: [
      { k: 'Teams and Roles', v: 'Upto 5' },
      { k: 'Reviews', v: 'Google' },
      { k: 'Add Stores', v: 'Upto 3' },
      { k: 'Coupons', v: '90/Month' },
      { k: 'AI Coupons', v: '100 Credits' },
      { k: 'Lucky Draw', v: '3/Month' },
      { k: 'Social Connection', v: 'WA/INSTA/Google' },
      { k: 'Customer Message', v: '10 at Once' },
      { k: 'Dashboard', v: 'Growth' },
    ],
  },
  {
    code: 'PRO',
    name: 'Pro',
    priceMonthly: 2499,
    currency: 'INR',
    features: [
      { k: 'Teams and Roles', v: 'Unlimited' },
      { k: 'Reviews', v: 'Google' },
      { k: 'Add Stores', v: 'Unlimited' },
      { k: 'Coupons', v: 'Unlimited' },
      { k: 'AI Coupons', v: '1000 Credits' },
      { k: 'Lucky Draw', v: '10/Months' },
      { k: 'Social Connection', v: 'WA/INSTA/Google' },
      { k: 'Customer Message', v: 'upto 1000 at once' },
      { k: 'Dashboard', v: 'Customised' },
    ],
  },
];
