// Mock data for lead stages
export const leadStages = [
    { id: 1, name: "New Lead", color: "bg-blue-500" },
    { id: 2, name: "Contacted", color: "bg-yellow-500" },
    { id: 3, name: "Qualified", color: "bg-green-500" },
    { id: 4, name: "Proposal", color: "bg-purple-500" },
    { id: 5, name: "Negotiation", color: "bg-orange-500" },
    { id: 6, name: "Closed Won", color: "bg-emerald-500" },
    { id: 7, name: "Closed Lost", color: "bg-red-500" },
  ]
  
  // Mock data for team members
export const teamMembers = [
    { id: 1, name: "Rahul Sharma", avatar: "https://api.dicebear.com/7.x/thumbs/svg?seed=Rahul%20Sharma" },
    { id: 2, name: "Priya Singh", avatar: "https://api.dicebear.com/7.x/thumbs/svg?seed=Priya%20Singh" },
    { id: 3, name: "Vikram Patel", avatar: "https://api.dicebear.com/7.x/thumbs/svg?seed=Vikram%20Patel" },
    { id: 4, name: "Neha Gupta", avatar: "https://api.dicebear.com/7.x/thumbs/svg?seed=Neha%20Gupta" },
  ]
  
  // Mock data for timeline activities
export const mockActivities = [
    {
      id: 1,
      type: "call",
      status: "completed",
      title: "Call - Successful",
      date: "2025-03-20T14:30:00",
      description: "Discussed project requirements and budget constraints",
      assignedTo: 1,
    },
    {
      id: 2,
      type: "meeting",
      status: "completed",
      title: "Meeting - Office Visit",
      date: "2025-03-18T11:00:00",
      description: "Initial consultation at our office to understand the client's needs",
      assignedTo: 3,
    },
    {
      id: 3,
      type: "site-visit",
      status: "overdue",
      title: "Site Visit - Bliss Homes",
      date: "2025-03-22T10:00:00",
      description: "Scheduled tour of Bliss Homes project location",
      assignedTo: 2,
      overdueBy: 3,
    },
    {
      id: 4,
      type: "quote",
      status: "pending",
      title: "Quote - 2BHK Unit",
      date: "2025-03-25T16:00:00",
      description: "Send quotation for 2BHK unit at Bliss Homes",
      assignedTo: 1,
    },
    {
      id: 5,
      type: "files",
      status: "completed",
      title: "Files - Project Brochure",
      date: "2025-03-15T09:15:00",
      description: "Sent floor plans and project brochure via email",
      assignedTo: 4,
    },
    {
      id: 6,
      type: "call",
      status: "overdue",
      title: "Call - Follow Up",
      date: "2025-03-21T13:00:00",
      description: "Follow up call regarding project interest",
      assignedTo: 1,
      overdueBy: 2,
    },
    {
      id: 7,
      type: "book-hold",
      status: "pending",
      title: "Hold - Unit A-101",
      date: "2025-03-28T11:30:00",
      description: "Hold Unit A-101 at Bliss Homes until confirmation",
      assignedTo: 3,
    },
  ]

  export type Activity = {
    id: number;
    type: string;
    status: string;
    title: string;
    date: string;
    description: string;
    assignedTo: number;
    overdueBy?: string | number;
  };