export const industryOptions = [ { value: "Information Technology", label: "Information Technology" }, { value: "Finance", label: "Finance" }, { value: "Healthcare", label: "Healthcare" }, { value: "Education", label: "Education" }, { value: "Engineering", label: "Engineering" }, { value: "Retail", label: "Retail" }, { value: "Hospitality", label: "Hospitality" }, { value: "Manufacturing", label: "Manufacturing" }, { value: "Construction", label: "Construction" }, { value: "Marketing", label: "Marketing" }, { value: "Media", label: "Media" }, { value: "Telecommunications", label: "Telecommunications" }, { value: "Transportation", label: "Transportation" }, { value: "Government", label: "Government" }, { value: "Consulting", label: "Consulting" } ]; export const industryOptionsFilter = [ { value: "all", label: "All industries" }, { value: "Information Technology", label: "Information Technology" }, { value: "Finance", label: "Finance" }, { value: "Healthcare", label: "Healthcare" }, { value: "Education", label: "Education" }, { value: "Engineering", label: "Engineering" }, { value: "Retail", label: "Retail" }, { value: "Hospitality", label: "Hospitality" }, { value: "Manufacturing", label: "Manufacturing" }, { value: "Construction", label: "Construction" }, { value: "Marketing", label: "Marketing" }, { value: "Media", label: "Media" }, { value: "Telecommunications", label: "Telecommunications" }, { value: "Transportation", label: "Transportation" }, { value: "Government", label: "Government" }, { value: "Consulting", label: "Consulting" } ]; export const jobTypeOptions = [ {value: "JOB", label: "Job"}, {value: "INTERNSHIP", label: "Internship"}, ] export const employmentStatusOptions = [ {value: "FULL_TIME", label: "Full time"}, {value: "PART_TIME", label: "Part time"} ] export const dataRangeOptions = [ {value: "all", label: "Lifetime"}, {value: "7days", label: "Last 7 days"}, {value: "30days", label: "Last 30 days"}, {value: "90days", label: "Last 90 days"}, {value: "12months", label: "Last 12 months"}, {value: "today", label: "Today"}, {value: "thisMonth", label: "This month"}, {value: "12months", label: "This year"}, ] export const sortOptions = [ { value: "date_newest", label: "Date (Newest First)" }, { value: "date_oldest", label: "Date (Oldest First)" }, { value: "salary_highest", label: "Salary (High to Low)" }, { value: "salary_lowest", label: "Salary (Low to High)" }, ]