|
|
@ -14,12 +14,9 @@ export type RoleFilter =
|
|
|
|
|
|
|
|
|
|
|
|
export type ExperienceFilter =
|
|
|
|
export type ExperienceFilter =
|
|
|
|
| 'Entry Level (0 - 2 years)'
|
|
|
|
| 'Entry Level (0 - 2 years)'
|
|
|
|
| 'Freshman'
|
|
|
|
| 'Internship'
|
|
|
|
| 'Junior'
|
|
|
|
|
|
|
|
| 'Mid Level (3 - 5 years)'
|
|
|
|
| 'Mid Level (3 - 5 years)'
|
|
|
|
| 'Senior Level (5+ years)'
|
|
|
|
| 'Senior Level (5+ years)';
|
|
|
|
| 'Senior'
|
|
|
|
|
|
|
|
| 'Sophomore';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type LocationFilter = 'India' | 'Singapore' | 'United States';
|
|
|
|
export type LocationFilter = 'India' | 'Singapore' | 'United States';
|
|
|
|
|
|
|
|
|
|
|
@ -79,10 +76,7 @@ export const ROLES: Array<FilterOption<RoleFilter>> = [
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
export const EXPERIENCES: Array<FilterOption<ExperienceFilter>> = [
|
|
|
|
export const EXPERIENCES: Array<FilterOption<ExperienceFilter>> = [
|
|
|
|
{ label: 'Freshman', value: 'Freshman' },
|
|
|
|
{ label: 'Internship', value: 'Internship' },
|
|
|
|
{ label: 'Sophomore', value: 'Sophomore' },
|
|
|
|
|
|
|
|
{ label: 'Junior', value: 'Junior' },
|
|
|
|
|
|
|
|
{ label: 'Senior', value: 'Senior' },
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
label: 'Entry Level (0 - 2 years)',
|
|
|
|
label: 'Entry Level (0 - 2 years)',
|
|
|
|
value: 'Entry Level (0 - 2 years)',
|
|
|
|
value: 'Entry Level (0 - 2 years)',
|
|
|
|