-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuestions.js
217 lines (213 loc) · 6.54 KB
/
Questions.js
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/* eslint-disable */
const questionSchema = {
question: "what is the meaning of life?",
id: -1,
answers: [
{
id: 1,
option: "yes",
image: null,
weights: null
},
{
id: 2,
option: "no",
image: null,
weights: null
}
]
};
/* eslint-enable */
const quizQuestions = [
{
question: "Choose the type that is most like your hair:",
id: 0,
answers: [
{
id: 0,
option: "Straight",
image: "/quizImages/straight.jpg",
weights: {
_1A: 3, _1B: 3, _1C: 3
},
nextQuestion: 1
},
{
id: 1,
option: "Wavy",
image: "/quizImages/wavy.jpg",
weights: {
_2A: 3, _2B: 3, _2C: 3
},
nextQuestion: 2
},
{
id: 2,
option: "Curly",
image: "/quizImages/curly.jpg",
weights: {
_3A: 3, _3B: 3, _3C: 3
},
nextQuestion: 3
},
{
id: 3,
option: "Kinky",
image: "/quizImages/kinky.jpg",
weights: {
_4A: 3, _4B: 3, _4C: 3
},
nextQuestion: 4
},
]
},
{
question: "What is your hair structure?",
id: 1,
header: { text: "Straight", image: "/quizImages/straight.jpg" },
answers: [
{
id: 0,
option: "Fine",
description: "Very soft, shiny, hard to hold a curl, hair tends to be oily, hard to damage.",
weights: {
_1A: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Straight.png"
},
{
id: 1,
option: "Medium",
description: "Has much body. (i.e. more volume, fuller)",
weights: {
_1B: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Straight.png"
},
{
id: 0,
option: "Coarse",
description: "Hard to curl (i.e. bone straight)",
weights: {
_1C: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Straight.png"
}
]
},
{
question: "What is your wave structure?",
id: 2,
header: { text: "Wavy", image: "/quizImages/wavy.jpg" },
answers: [
{
id: 0,
option: "Loose Waves",
description: "Can accomplish various styles. Loose \"S\" pattern. Hair sticks close to the head",
weights: {
_2A: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Wavy.png"
},
{
id: 1,
option: "Defined Waves",
description: "A bit resistant to styling. Hair has more of a defined \"s\" pattern. Hair tends to be frizzy.",
weights: {
_2B: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Wavy.png"
},
{
id: 0,
option: "Wide Waves",
description: "Hair has wider waves. Resistant to styling. Hair tends to be frizzy. ",
weights: {
_2C: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Wavy.png"
}
]
},
{
question: "What is your curl structure?",
id: 3,
header: { text: "Curly", image: "/quizImages/curly.jpg" },
answers: [
{
id: 0,
option: "Loose Curls",
description: "Thick and full with much body. Definite curl pattern. Hair tends to be frizzy. Can have a combination texture.",
weights: {
_3A: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Curly.png"
},
{
id: 1,
option: "Tight Curls",
description: "medium amount of space of the curls. Can have a combined texture. ",
weights: {
_3B: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Curly.png"
},
{
id: 0,
option: "Corkscrews",
description: "Tight curls in corkscrews. The curls are very tightly curled",
weights: {
_3C: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Curly.png"
}
]
},
{
question: "What is your coil structure?",
id: 4,
header: { text: "Kinky", image: "/quizImages/kinky.jpg" },
answers: [
{
id: 0,
option: "Defined Coils",
description: "Tightly coiled. Has a very defined \"o\" shaped pattern",
weights: {
_4A: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Coily.png"
},
{
id: 1,
option: "Z Coil",
description: "Tightly coiled. Little less defined kink pattern. has more of a \"Z\"-shaped pattern",
weights: {
_4B: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Coily.png"
},
{
id: 0,
option: "Tight Coil",
description: "Tightly coiled. Almost no visible defined kink pattern, unless seen from up close. Has more of a very tight \"o\" shped pattern",
weights: {
_4C: 5
},
nextQuestion: null,
subImage: "/quizImages/Crowns Type_Coily.png"
}
]
}
];
export { quizQuestions };