export interface PricingItem {
  id: number;
  offer: string;
  price: {
    dollar: string;
    amount: string;
    period: string;
  };
  title: string;
  subtitle: string;
  features: string[];
  variant?: string;
  badge?: string;
}

export interface PricingData {
  packages: PricingItem[];
}

export const pricingData: PricingData = {
  packages: [
    {
      id: 1,
      offer: "15% OFF",
      price: {
        dollar: "$",
        amount: "18",
        period: "/month",
      },
      title: "Regular Website Builder",
      subtitle: "Simple solution & powerful",
      features: [
        "Free domain for 1 year",
        "AI website builder",
        "250+ templates",
        "Social Media Marketing",
        "Marketing integrations",
        "Built-in analytics",
        "Mobile editing",
      ],
    },
    {
      id: 2,
      offer: "28% OFF",
      price: {
        dollar: "$",
        amount: "93",
        period: "/month",
      },
      title: "Premium Website Builder",
      subtitle: "Simple solution & powerful",
      features: [
        "Free domain for 1 year",
        "AI website builder",
        "250+ templates",
        "Social Media Marketing",
        "Marketing integrations",
        "Built-in analytics",
        "Mobile editing",
      ],
      variant: "price-block",
      badge: "Popular Package",
    },
    {
      id: 3,
      offer: "83% OFF",
      price: {
        dollar: "$",
        amount: "250",
        period: "/month",
      },
      title: "Custom Website Builder",
      subtitle: "Simple solution & powerful",
      features: [
        "Free domain for 1 year",
        "AI website builder",
        "250+ templates",
        "Social Media Marketing",
        "Marketing integrations",
        "Built-in analytics",
        "Mobile editing",
      ],
    },
  ],
};
