export type PricingTwoFeatureValue =
  | { text: string }
  | { icon: string; cross?: boolean };

export interface PricingTwoFeature {
  title: string;
  values: PricingTwoFeatureValue[];
}

export interface PricingTwoPlan {
  name: string;
  price: string;
  period: string;
  buttonLabel: string;
  buttonVariant: string;
}

export const pricingTwoPlans: PricingTwoPlan[] = [
  {
    name: "Basic",
    price: "$19",
    period: "/m",
    buttonLabel: "Select Basic",
    buttonVariant: "v3",
  },
  {
    name: "Professional",
    price: "$49",
    period: "/m",
    buttonLabel: "Select Pro",
    buttonVariant: "v3",
  },
  {
    name: "Enterprise",
    price: "$99",
    period: "/m",
    buttonLabel: "Select Max",
    buttonVariant: "v3",
  },
];

export const pricingTwoFeatures: PricingTwoFeature[] = [
  {
    title: "Contacts Limit",
    values: [
      { text: "Up to 1,000" },
      { text: "Up to 10,000" },
      { text: "Unlimited" },
    ],
  },
  {
    title: "Users",
    values: [
      { text: "1 User" },
      { text: "Up to 5 Users" },
      { text: "Unlimited" },
    ],
  },
  {
    title: "Lead & Contact Management",
    values: [
      { icon: "assets/images/icon/check1-4.svg" },
      { icon: "assets/images/icon/check1-4.svg" },
      { icon: "assets/images/icon/check1-4.svg" },
    ],
  },
  {
    title: "Sales Pipeline",
    values: [
      { icon: "assets/images/icon/check1-4.svg" },
      { icon: "assets/images/icon/check1-4.svg" },
      { icon: "assets/images/icon/check1-4.svg" },
    ],
  },
  {
    title: "Marketing Automation",
    values: [
      { icon: "assets/images/icon/cross.svg", cross: true },
      { icon: "assets/images/icon/check1-4.svg" },
      { icon: "assets/images/icon/check1-4.svg" },
    ],
  },
  {
    title: "Analytics & Reporting",
    values: [
      { text: "Basic Reports" },
      { text: "Advanced Reports" },
      { text: "Custom Reports" },
    ],
  },
  {
    title: "Integrations",
    values: [
      { text: "Limited" },
      { text: "Full Integrations" },
      { text: "Premium Integrations" },
    ],
  },
  {
    title: "Dedicated Support",
    values: [
      { text: "Email Support" },
      { text: "Priority Support" },
      { text: "24/7 Dedicated Support" },
    ],
  },
  {
    title: "Customization Options",
    values: [
      { text: "Limited" },
      { text: "Moderate" },
      { text: "Full Customization" },
    ],
  },
];
