23 lines
543 B
TypeScript
23 lines
543 B
TypeScript
export const LEAD_STATUSES = {
|
|
open: { label: "Open", color: "bg-blue-500" },
|
|
contacted: { label: "Contacted", color: "bg-amber-500" },
|
|
pending: { label: "Pending", color: "bg-purple-500" },
|
|
closed: { label: "Closed", color: "bg-emerald-500" },
|
|
ignored: { label: "Ignored", color: "bg-zinc-500" },
|
|
} 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 = "Coast IT"
|