const sampleEnquiries = [
  {
    id: 1,
    name: "Enquiry for Project Alpha",
    type: "General",
    linkType: "project",
    linkID: "101",
    enqType: "support",
  },
  {
    id: 2,
    name: "Enquiry for Project Beta",
    type: "Technical",
    linkType: "project",
    linkID: "102",
    enqType: "technical",
  },
  {
    id: 3,
    name: "Customer Support Request",
    type: "Support",
    linkType: "customer",
    linkID: "201",
    enqType: "support",
  },
  {
    id: 4,
    name: "Billing Issue",
    type: "Billing",
    linkType: "customer",
    linkID: "202",
    enqType: "billing",
  },
  {
    id: 5,
    name: "Feature Request",
    type: "Feedback",
    linkType: "product",
    linkID: "301",
    enqType: "feedback",
  },
];
