mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
23 lines
534 B
TypeScript
23 lines
534 B
TypeScript
export const LEAD_STATUSES = {
|
|
open: { label: "Open", color: "bg-white" },
|
|
contacted: { label: "Contacted", color: "bg-red-500" },
|
|
pending: { label: "Pending", color: "bg-blue-900" },
|
|
closed: { label: "Closed", color: "bg-blue-400" },
|
|
ignored: { label: "Ignored", color: "bg-black" },
|
|
} as const
|
|
|
|
export const LEAD_SOURCES = [
|
|
"Website",
|
|
"Referral",
|
|
"LinkedIn",
|
|
"Cold Call",
|
|
"Email",
|
|
"Google",
|
|
"Social Media",
|
|
"Other",
|
|
] as const
|
|
|
|
export const ITEMS_PER_PAGE = 10
|
|
|
|
export const COMPANY_NAME = "Black Cipher"
|