import { Mars, NonBinary, Venus } from "lucide-react"; export const defaultDarkModeLogo = "./logos/logo_atomic_crm_dark.svg"; export const defaultLightModeLogo = "./logos/logo_atomic_crm_light.svg"; export const defaultTitle = "CRM"; export const defaultCompanySectors = [ "Communication Services", "Consumer Discretionary", "Consumer Staples", "Energy", "Financials", "Health Care", "Industrials", "Information Technology", "Materials", "Real Estate", "Utilities", ]; export const defaultDealStages = [ { value: "opportunity", label: "Opportunity" }, { value: "proposal-sent", label: "Proposal Sent" }, { value: "in-negociation", label: "In Negotiation" }, { value: "won", label: "Won" }, { value: "lost", label: "Lost" }, { value: "delayed", label: "Delayed" }, ]; export const defaultDealPipelineStatuses = ["won"]; export const defaultDealCategories = [ "Other", "Copywriting", "Print project", "UI Design", "Website design", ]; export const defaultNoteStatuses = [ { value: "cold", label: "Cold", color: "#7dbde8" }, { value: "warm", label: "Warm", color: "#e8cb7d" }, { value: "hot", label: "Hot", color: "#e88b7d" }, { value: "in-contract", label: "In Contract", color: "#a4e87d" }, ]; export const defaultTaskTypes = [ "None", "Email", "Demo", "Lunch", "Meeting", "Follow-up", "Thank you", "Ship", "Call", ]; export const defaultTaskPriorities = [ { id: "low", name: "Low" }, { id: "medium", name: "Medium" }, { id: "high", name: "High" }, { id: "urgent", name: "Urgent" }, ]; export const defaultTaskStatuses = [ { id: "todo", name: "To Do" }, { id: "in_progress", name: "In Progress" }, { id: "blocked", name: "Blocked" }, { id: "done", name: "Done" }, { id: "cancelled", name: "Cancelled" }, ]; export const defaultContactGender = [ { value: "male", label: "He/Him", icon: Mars }, { value: "female", label: "She/Her", icon: Venus }, { value: "nonbinary", label: "They/Them", icon: NonBinary }, ];