Initial commit

This commit is contained in:
2026-06-17 13:51:22 +02:00
commit 4898bf7142
81 changed files with 12522 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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 = "Coastal IT"