1 | export const industryOptions = [
|
---|
2 | { value: "Information Technology", label: "Information Technology" },
|
---|
3 | { value: "Finance", label: "Finance" },
|
---|
4 | { value: "Healthcare", label: "Healthcare" },
|
---|
5 | { value: "Education", label: "Education" },
|
---|
6 | { value: "Engineering", label: "Engineering" },
|
---|
7 | { value: "Retail", label: "Retail" },
|
---|
8 | { value: "Hospitality", label: "Hospitality" },
|
---|
9 | { value: "Manufacturing", label: "Manufacturing" },
|
---|
10 | { value: "Construction", label: "Construction" },
|
---|
11 | { value: "Marketing", label: "Marketing" },
|
---|
12 | { value: "Media", label: "Media" },
|
---|
13 | { value: "Telecommunications", label: "Telecommunications" },
|
---|
14 | { value: "Transportation", label: "Transportation" },
|
---|
15 | { value: "Government", label: "Government" },
|
---|
16 | { value: "Consulting", label: "Consulting" }
|
---|
17 | ];
|
---|
18 |
|
---|
19 | export const industryOptionsFilter = [
|
---|
20 | { value: "all", label: "All industries" },
|
---|
21 | { value: "Information Technology", label: "Information Technology" },
|
---|
22 | { value: "Finance", label: "Finance" },
|
---|
23 | { value: "Healthcare", label: "Healthcare" },
|
---|
24 | { value: "Education", label: "Education" },
|
---|
25 | { value: "Engineering", label: "Engineering" },
|
---|
26 | { value: "Retail", label: "Retail" },
|
---|
27 | { value: "Hospitality", label: "Hospitality" },
|
---|
28 | { value: "Manufacturing", label: "Manufacturing" },
|
---|
29 | { value: "Construction", label: "Construction" },
|
---|
30 | { value: "Marketing", label: "Marketing" },
|
---|
31 | { value: "Media", label: "Media" },
|
---|
32 | { value: "Telecommunications", label: "Telecommunications" },
|
---|
33 | { value: "Transportation", label: "Transportation" },
|
---|
34 | { value: "Government", label: "Government" },
|
---|
35 | { value: "Consulting", label: "Consulting" }
|
---|
36 | ];
|
---|
37 |
|
---|
38 | export const jobTypeOptions = [
|
---|
39 | {value: "JOB", label: "Job"},
|
---|
40 | {value: "INTERNSHIP", label: "Internship"},
|
---|
41 | ]
|
---|
42 |
|
---|
43 | export const employmentStatusOptions = [
|
---|
44 | {value: "FULL_TIME", label: "Full time"},
|
---|
45 | {value: "PART_TIME", label: "Part time"}
|
---|
46 | ]
|
---|
47 |
|
---|
48 | export const dataRangeOptions = [
|
---|
49 | {value: "all", label: "Lifetime"},
|
---|
50 | {value: "7days", label: "Last 7 days"},
|
---|
51 | {value: "30days", label: "Last 30 days"},
|
---|
52 | {value: "90days", label: "Last 90 days"},
|
---|
53 | {value: "12months", label: "Last 12 months"},
|
---|
54 | {value: "today", label: "Today"},
|
---|
55 | {value: "thisMonth", label: "This month"},
|
---|
56 | {value: "12months", label: "This year"},
|
---|
57 | ]
|
---|
58 |
|
---|
59 | export const sortOptions = [
|
---|
60 | { value: "date_newest", label: "Date (Newest First)" },
|
---|
61 | { value: "date_oldest", label: "Date (Oldest First)" },
|
---|
62 | { value: "salary_highest", label: "Salary (High to Low)" },
|
---|
63 | { value: "salary_lowest", label: "Salary (Low to High)" },
|
---|
64 | ] |
---|