export const projects = [
    { id: "1", name: "Bliss Homes Phase 1", city: "Mumbai", type: "Residential" },
    { id: "2", name: "Bliss Homes Phase 2", city: "Mumbai", type: "Residential" },
    { id: "3", name: "Satyaja Prelude Tower A", city: "Pune", type: "Residential" },
    { id: "4", name: "Satyaja Prelude Tower B", city: "Pune", type: "Residential" },
    { id: "5", name: "Bliss Commercial Plaza", city: "Mumbai", type: "Commercial" },
    { id: "6", name: "Satyaja Retail Spaces", city: "Pune", type: "Commercial" },
  ]
  
  // Sample payment plans data
export const initialPaymentPlans = [
    {
      id: "1",
      project: "1",
      name: "Basic Payment Plan",
      ratePerSqYard: 45000,
      downPaymentType: "percentage",
      downPaymentValue: 20,
      installmentMonths: 12,
      status: "active",
      createdAt: new Date(2023, 0, 15),
    },
    {
      id: "2",
      project: "2",
      name: "Premium Payment Plan",
      ratePerSqYard: 55000,
      downPaymentType: "fixed",
      downPaymentValue: 500000,
      installmentMonths: 24,
      status: "active",
      createdAt: new Date(2023, 1, 10),
    },
    {
      id: "3",
      project: "3",
      name: "Budget-Friendly Plan",
      ratePerSqYard: 35000,
      downPaymentType: "percentage",
      downPaymentValue: 10,
      installmentMonths: 36,
      status: "active",
      createdAt: new Date(2023, 2, 5),
    },
    {
      id: "4",
      project: "4",
      name: "Luxury Payment Plan",
      ratePerSqYard: 75000,
      downPaymentType: "fixed",
      downPaymentValue: 1000000,
      installmentMonths: 18,
      status: "active",
      createdAt: new Date(2023, 3, 20),
    },
  ]

  export const PAYMENT_PLAN_ACTION_TYPE = {
    EDIT: "edit",
    DUPLICATE: "duplicate",
    ACTIVATE: "activate",
    DEACTIVATE: "deactivate",
    DELETE: "delete",
  } as const;
  

export const mockProjects = [
    { value: "1", label: "Project A" },
    { value: "2", label: "Project B" },
  ];