1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57 | 16x
16x
16x
16x
16x
| export const BLOOD_GROUPS = [
'O+', 'A+', 'B+', 'AB+',
'O−', 'A−', 'B−', 'AB−'
];
export const FAVORITE_MUSIC_GENRE = [
"Pop",
"Rock",
"Hard Rock",
"Rhythm & Blues (R&B)",
"Country",
"Rock & Roll",
"Soul",
"Country Pop",
"Pop Rock",
"Heavy Metal",
"Progressive Rock",
"Alternative Rock",
"Jazz",
"New Wave",
"Synthpop",
"Hip Hop",
"Folk",
"New Age",
"Blues Rock",
"Ambient",
"Ambient house",
"Classic",
"Neoclassic",
"Drum and bass"
]
export const GENDER_SYMBOLS = [
'♂',
'♀',
'⚲',
]
export const SEXUALITY_SYMBOLS = [
'⚤',
'⚢',
'⚣',
'⚥',
'⚧',
'⚪'
];
export const ENGLISH_LEVEL = [
'Beginner',
'Elementary',
'Pre - Intermediate',
'Intermediate',
'Upper Intermediate',
'Advanced',
'Proficiency'
];
|