export interface Plan {
  id: string;
  name: string;
  subtitle: string;
  monthlyPrice: string;
  yearlyPrice: string;
  period: string;
  description: string;
  icon: string;
  features: string[];
}

export const pricingPlans: Plan[] = [
  {
    id: "basic",
    name: "Basic Package",
    subtitle: "Regular",
    monthlyPrice: "$29",
    yearlyPrice: "$290",
    period: "per month cost",
    description: "Perfect for individuals and small projects.",
    icon: "/assets/images/icon/price1-1.svg",
    features: [
      "Unlimited team members & custom roles",
      "Full-cycle dev with dedicated DevOps",
      "White-label UI & custom branding",
      "Enterprise project management & reporting",
      "Hybrid / on-premise & multi-cloud hosting",
      "Custom workflow automation & ERP/CRM",
      "24/7 priority support & account manager",
      "Compliance: GDPR, HIPAA, ISO 27001",
      "Roadmap collaboration & co-development",
    ],
  },
  {
    id: "professional",
    name: "Professional Package",
    subtitle: "Popular",
    monthlyPrice: "$89",
    yearlyPrice: "$890",
    period: "per month cost",
    description: "Best for growing businesses that more flexibility.",
    icon: "/assets/images/icon/price1-2.svg",
    features: [
      "Unlimited team members & custom roles",
      "Full-cycle dev with dedicated DevOps",
      "White-label UI & custom branding",
      "Enterprise project management & reporting",
      "Hybrid / on-premise & multi-cloud hosting",
      "Custom workflow automation & ERP/CRM",
      "24/7 priority support & account manager",
      "Compliance: GDPR, HIPAA, ISO 27001",
      "Roadmap collaboration & co-development",
    ],
  },
  {
    id: "enterprise",
    name: "Enterprise Package",
    subtitle: "Custom",
    monthlyPrice: "$119",
    yearlyPrice: "$1190",
    period: "per month cost",
    description: "Tailored for large teams needs for SaaS services.",
    icon: "/assets/images/icon/price1-3.svg",
    features: [
      "Unlimited team members & custom roles",
      "Full-cycle dev with dedicated DevOps",
      "White-label UI & custom branding",
      "Enterprise project management & reporting",
      "Hybrid / on-premise & multi-cloud hosting",
      "Custom workflow automation & ERP/CRM",
      "24/7 priority support & account manager",
      "Compliance: GDPR, HIPAA, ISO 27001",
      "Roadmap collaboration & co-development",
    ],
  },
];
