parent
bfe1657a4d
commit
2feec85981
@ -0,0 +1,50 @@
|
||||
import type { FilterChoices } from '~/components/questions/filter/FilterSection';
|
||||
|
||||
export const COMPANIES: FilterChoices = [
|
||||
{
|
||||
label: 'Google',
|
||||
value: 'google',
|
||||
},
|
||||
{
|
||||
label: 'Meta',
|
||||
value: 'meta',
|
||||
},
|
||||
];
|
||||
|
||||
// Code, design, behavioral
|
||||
export const QUESTION_TYPES: FilterChoices = [
|
||||
{
|
||||
label: 'Coding',
|
||||
value: 'coding',
|
||||
},
|
||||
{
|
||||
label: 'Design',
|
||||
value: 'design',
|
||||
},
|
||||
{
|
||||
label: 'Behavioral',
|
||||
value: 'behavioral',
|
||||
},
|
||||
];
|
||||
|
||||
export const QUESTION_AGES: FilterChoices = [
|
||||
{
|
||||
label: 'Last month',
|
||||
value: 'last-month',
|
||||
},
|
||||
{
|
||||
label: 'Last 6 months',
|
||||
value: 'last-6-months',
|
||||
},
|
||||
{
|
||||
label: 'Last year',
|
||||
value: 'last-year',
|
||||
},
|
||||
];
|
||||
|
||||
export const LOCATIONS: FilterChoices = [
|
||||
{
|
||||
label: 'Singapore',
|
||||
value: 'singapore',
|
||||
},
|
||||
];
|
Loading…
Reference in new issue