import { Partner } from "@/components/channel-partners/PartnerTableColumn";

export const partnersData: Partner[] = [
  {
    id: "P001",
    name: "Rajesh Kumar",
    phone: "+91 98765 43210",
    email: "rajesh.kumar@example.com",
    bookingsTillNow: 8,
    lastBookingDate: "2024-01-15",
    status: "Active",
    addedBy: "Amit Sharma",
    addedOn: "2023-06-12",
    isPrimary: true,
  },
  {
    id: "P002",
    name: "Priya Patel",
    phone: "+91 98765 43211",
    email: "priya.patel@example.com",
    bookingsTillNow: 12,
    lastBookingDate: "2024-01-20",
    status: "Active",
    addedBy: "Amit Sharma",
    addedOn: "2023-07-08",
    isPrimary: false,
  },
  {
    id: "P003",
    name: "Suresh Reddy",
    phone: "+91 98765 43212",
    email: "suresh.reddy@example.com",
    bookingsTillNow: 5,
    lastBookingDate: "2023-12-28",
    status: "Active",
    addedBy: "Amit Sharma",
    addedOn: "2023-08-15",
    isPrimary: false,
  },
  {
    id: "P004",
    name: "Anita Desai",
    phone: "+91 98765 43213",
    email: "anita.desai@example.com",
    bookingsTillNow: 15,
    lastBookingDate: "2024-01-18",
    status: "Active",
    addedBy: "Amit Sharma",
    addedOn: "2023-05-22",
    isPrimary: false,
  },
  {
    id: "P005",
    name: "Vikram Singh",
    phone: "+91 98765 43214",
    email: "vikram.singh@example.com",
    bookingsTillNow: 3,
    lastBookingDate: "2023-11-30",
    status: "Inactive",
    addedBy: "Amit Sharma",
    addedOn: "2023-09-10",
    isPrimary: false,
  },
];
