@deina-labs/deina-core 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/answer-confirmations.d.ts +2 -0
- package/dist/answer-confirmations.d.ts.map +1 -0
- package/dist/answer-confirmations.js +53 -0
- package/dist/answer-confirmations.js.map +1 -0
- package/dist/fun-facts.d.ts +1 -0
- package/dist/fun-facts.d.ts.map +1 -1
- package/dist/fun-facts.js +20 -15
- package/dist/fun-facts.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/onboarding-content.js +19 -19
- package/dist/onboarding-content.js.map +1 -1
- package/dist/quiz-questions.d.ts +2 -0
- package/dist/quiz-questions.d.ts.map +1 -1
- package/dist/quiz-questions.js +139 -125
- package/dist/quiz-questions.js.map +1 -1
- package/dist/section-hooks.d.ts +13 -0
- package/dist/section-hooks.d.ts.map +1 -0
- package/dist/section-hooks.js +166 -0
- package/dist/section-hooks.js.map +1 -0
- package/package.json +1 -1
- package/src/answer-confirmations.ts +99 -0
- package/src/fun-facts.ts +21 -15
- package/src/index.ts +2 -0
- package/src/onboarding-content.ts +19 -19
- package/src/quiz-questions.ts +141 -129
- package/src/section-hooks.ts +190 -0
package/src/quiz-questions.ts
CHANGED
|
@@ -71,6 +71,8 @@ export interface StandardQuestion {
|
|
|
71
71
|
key: StandardQuality;
|
|
72
72
|
label: string;
|
|
73
73
|
description: string;
|
|
74
|
+
type?: 'scale' | 'options';
|
|
75
|
+
options?: string[];
|
|
74
76
|
}
|
|
75
77
|
|
|
76
78
|
export const STANDARDS_QUALITIES: StandardQuestion[] = [
|
|
@@ -78,61 +80,75 @@ export const STANDARDS_QUALITIES: StandardQuestion[] = [
|
|
|
78
80
|
key: 'physicalAttraction',
|
|
79
81
|
label: 'Physical Attraction',
|
|
80
82
|
description:
|
|
81
|
-
'
|
|
83
|
+
'Be honest — how much does physical attraction control whether you give someone a real chance?',
|
|
82
84
|
},
|
|
83
85
|
{
|
|
84
86
|
key: 'emotionalStability',
|
|
85
87
|
label: 'Emotional Stability',
|
|
86
88
|
description:
|
|
87
|
-
'When
|
|
89
|
+
'When things get tense, how much do you need him to stay calm — or do you secretly tolerate emotional chaos?',
|
|
88
90
|
},
|
|
89
91
|
{
|
|
90
92
|
key: 'emotionalAvailability',
|
|
91
93
|
label: 'Emotional Availability',
|
|
92
94
|
description:
|
|
93
|
-
'
|
|
95
|
+
'How much do you actually need him to be emotionally open — or have you learned to accept silence as normal?',
|
|
94
96
|
},
|
|
95
97
|
{
|
|
96
98
|
key: 'communicationFrequency',
|
|
97
|
-
label: 'Communication
|
|
99
|
+
label: 'Communication',
|
|
98
100
|
description:
|
|
99
|
-
|
|
101
|
+
'How much does inconsistent communication mess with your head — or have you trained yourself not to care?',
|
|
100
102
|
},
|
|
101
103
|
{
|
|
102
104
|
key: 'initiativeAndEffort',
|
|
103
105
|
label: 'Initiative & Effort',
|
|
104
106
|
description:
|
|
105
|
-
'
|
|
107
|
+
'How much do you need him to lead — or have you gotten used to being the one who plans everything?',
|
|
106
108
|
},
|
|
107
109
|
{
|
|
108
110
|
key: 'followThrough',
|
|
109
111
|
label: 'Follow-Through',
|
|
110
112
|
description:
|
|
111
|
-
'
|
|
113
|
+
'He said he\'d call. He didn\'t. What do you actually do?',
|
|
114
|
+
type: 'options',
|
|
115
|
+
options: [
|
|
116
|
+
'I let it go — people forget',
|
|
117
|
+
'I notice but don\'t say anything',
|
|
118
|
+
'I bring it up directly',
|
|
119
|
+
'I start pulling back without telling him why',
|
|
120
|
+
],
|
|
112
121
|
},
|
|
113
122
|
{
|
|
114
123
|
key: 'financialResponsibility',
|
|
115
124
|
label: 'Financial Responsibility',
|
|
116
125
|
description:
|
|
117
|
-
'
|
|
126
|
+
'How much does his money situation actually matter to you — even if you don\'t want to admit it?',
|
|
118
127
|
},
|
|
119
128
|
{
|
|
120
129
|
key: 'lifestyleAlignment',
|
|
121
130
|
label: 'Lifestyle Alignment',
|
|
122
131
|
description:
|
|
123
|
-
'How
|
|
132
|
+
'How much do you need your lives to actually fit together — or do you convince yourself differences don\'t matter?',
|
|
124
133
|
},
|
|
125
134
|
{
|
|
126
135
|
key: 'longTermGoals',
|
|
127
136
|
label: 'Long-Term Goals',
|
|
128
137
|
description:
|
|
129
|
-
'
|
|
138
|
+
'You\'re months in and he still hasn\'t mentioned the future. What do you do?',
|
|
139
|
+
type: 'options',
|
|
140
|
+
options: [
|
|
141
|
+
'I bring it up — I need to know',
|
|
142
|
+
'I drop hints and hope he gets it',
|
|
143
|
+
'I wait for him to bring it up',
|
|
144
|
+
'I avoid it because I\'m scared of what he\'ll say',
|
|
145
|
+
],
|
|
130
146
|
},
|
|
131
147
|
{
|
|
132
148
|
key: 'weeklyConsistency',
|
|
133
149
|
label: 'Weekly Consistency',
|
|
134
150
|
description:
|
|
135
|
-
'
|
|
151
|
+
'How much does it bother you when you go a whole week without seeing him — or have you convinced yourself that\'s normal?',
|
|
136
152
|
},
|
|
137
153
|
];
|
|
138
154
|
|
|
@@ -149,67 +165,67 @@ export const TIMELINE_QUESTIONS: TimelineQuestion[] = [
|
|
|
149
165
|
{
|
|
150
166
|
key: 'firstDateWindow',
|
|
151
167
|
question:
|
|
152
|
-
'
|
|
153
|
-
options: ['3–5 days', '1 week', '2 weeks', '3–4 weeks', '
|
|
168
|
+
'How long are you willing to text someone before you need a real date — or do you let it drag on?',
|
|
169
|
+
options: ['3–5 days', '1 week', '2 weeks', '3–4 weeks', 'I don\'t push for it'],
|
|
154
170
|
},
|
|
155
171
|
{
|
|
156
172
|
key: 'secondDateWindow',
|
|
157
173
|
question:
|
|
158
|
-
'After a
|
|
159
|
-
options: ['3–5 days', '1 week', '2 weeks', '
|
|
174
|
+
'After a first date that went well, how long can you wait before the silence starts getting to you?',
|
|
175
|
+
options: ['3–5 days', '1 week', '2 weeks', 'I try not to think about it'],
|
|
160
176
|
},
|
|
161
177
|
{
|
|
162
178
|
key: 'preFirstDatePreferences',
|
|
163
179
|
question:
|
|
164
|
-
'Before meeting
|
|
165
|
-
options: ['A call or FaceTime', 'A clear plan', 'Consistent texting', '
|
|
180
|
+
'Before meeting him in person, what do you actually need to feel safe — or do you skip that part when you\'re excited?',
|
|
181
|
+
options: ['A call or FaceTime', 'A clear plan', 'Consistent texting', 'I don\'t need anything'],
|
|
166
182
|
multiSelect: true,
|
|
167
183
|
},
|
|
168
184
|
{
|
|
169
185
|
key: 'communicationCadence',
|
|
170
186
|
question:
|
|
171
|
-
|
|
172
|
-
options: ['Daily', 'Every other day', '2–3 times per week', 'Only when
|
|
187
|
+
'How often do you need to hear from someone before the anxiety kicks in?',
|
|
188
|
+
options: ['Daily', 'Every other day', '2–3 times per week', 'Only when there\'s a plan'],
|
|
173
189
|
},
|
|
174
190
|
{
|
|
175
191
|
key: 'exclusivityExpectation',
|
|
176
192
|
question:
|
|
177
|
-
'
|
|
178
|
-
options: ['3–5 dates', '6–8 dates', '2 months', '3 months', '
|
|
193
|
+
'How long can you date someone without knowing where you stand — before it starts eating at you?',
|
|
194
|
+
options: ['3–5 dates', '6–8 dates', '2 months', '3 months', 'I avoid bringing it up'],
|
|
179
195
|
},
|
|
180
196
|
{
|
|
181
197
|
key: 'intentionClarity',
|
|
182
198
|
question:
|
|
183
|
-
'
|
|
199
|
+
'How long do you let someone keep things vague before you demand to know what they actually want?',
|
|
184
200
|
options: [
|
|
185
201
|
'Before date 2',
|
|
186
202
|
'Within 1 month',
|
|
187
203
|
'Within 2 months',
|
|
188
204
|
'After 3 months',
|
|
189
|
-
'
|
|
205
|
+
'I wait for them to bring it up',
|
|
190
206
|
],
|
|
191
207
|
},
|
|
192
208
|
{
|
|
193
209
|
key: 'meetFriendsFamily',
|
|
194
210
|
question:
|
|
195
|
-
|
|
211
|
+
'How long into dating before you need to exist in his real life — not just in his DMs?',
|
|
196
212
|
options: [
|
|
197
213
|
'1–2 months',
|
|
198
214
|
'3 months',
|
|
199
215
|
'6 months',
|
|
200
216
|
'Only after exclusivity',
|
|
201
|
-
'
|
|
217
|
+
'I don\'t push for it',
|
|
202
218
|
],
|
|
203
219
|
},
|
|
204
220
|
{
|
|
205
221
|
key: 'progressionPace',
|
|
206
222
|
question:
|
|
207
|
-
'
|
|
223
|
+
'What pace do you actually move at — not what you tell yourself, but what you do?',
|
|
208
224
|
options: [
|
|
209
|
-
'
|
|
210
|
-
'
|
|
211
|
-
'
|
|
212
|
-
'
|
|
225
|
+
'I move fast when I\'m excited',
|
|
226
|
+
'I try to stay structured',
|
|
227
|
+
'I let things unfold slowly',
|
|
228
|
+
'I go with whatever he sets',
|
|
213
229
|
],
|
|
214
230
|
},
|
|
215
231
|
];
|
|
@@ -220,113 +236,113 @@ export const MINDSET_QUESTIONS: MindsetQuestion[] = [
|
|
|
220
236
|
{
|
|
221
237
|
key: 'standardsConfidence',
|
|
222
238
|
question:
|
|
223
|
-
'When you really like someone,
|
|
239
|
+
'When you really like someone, do your standards hold — or do you start telling yourself you\'re asking for too much?',
|
|
224
240
|
type: 'scale',
|
|
225
|
-
scaleMinLabel:
|
|
226
|
-
scaleMaxLabel: '
|
|
241
|
+
scaleMinLabel: 'I start doubting what I deserve',
|
|
242
|
+
scaleMaxLabel: 'My standards don\'t move',
|
|
227
243
|
},
|
|
228
244
|
{
|
|
229
245
|
key: 'effortInterpretation',
|
|
230
246
|
question:
|
|
231
|
-
'
|
|
247
|
+
'He used to text you back fast. Now he takes hours. What\'s your first instinct?',
|
|
232
248
|
type: 'options',
|
|
233
249
|
options: [
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
'I notice
|
|
237
|
-
'I
|
|
250
|
+
'I probably did something wrong',
|
|
251
|
+
'He\'s just busy, I shouldn\'t overthink it',
|
|
252
|
+
'I notice it and start watching more closely',
|
|
253
|
+
'I match his energy and pull back',
|
|
238
254
|
],
|
|
239
255
|
},
|
|
240
256
|
{
|
|
241
257
|
key: 'comparativeAttraction',
|
|
242
258
|
question:
|
|
243
|
-
'When
|
|
259
|
+
'When he\'s more attractive than your usual type, how often do you feel like you need to try harder to keep him?',
|
|
244
260
|
type: 'scale',
|
|
245
|
-
scaleMinLabel: '
|
|
246
|
-
scaleMaxLabel: '
|
|
261
|
+
scaleMinLabel: 'Almost always',
|
|
262
|
+
scaleMaxLabel: 'Never — I know my worth',
|
|
247
263
|
},
|
|
248
264
|
{
|
|
249
265
|
key: 'behavioralAdjustment',
|
|
250
266
|
question:
|
|
251
|
-
'
|
|
267
|
+
'How often do you become a different version of yourself to keep someone interested?',
|
|
252
268
|
type: 'scale',
|
|
253
|
-
scaleMinLabel: '
|
|
254
|
-
scaleMaxLabel: '
|
|
269
|
+
scaleMinLabel: 'More than I\'d like to admit',
|
|
270
|
+
scaleMaxLabel: 'I don\'t change for anyone',
|
|
255
271
|
},
|
|
256
272
|
{
|
|
257
273
|
key: 'scarcityMindset',
|
|
258
274
|
question:
|
|
259
|
-
'When you meet someone who
|
|
275
|
+
'When you finally meet someone who feels right, how much pressure do you put on yourself not to lose them?',
|
|
260
276
|
type: 'scale',
|
|
261
|
-
scaleMinLabel: '
|
|
262
|
-
scaleMaxLabel: '
|
|
277
|
+
scaleMinLabel: 'A lot — good ones are rare',
|
|
278
|
+
scaleMaxLabel: 'None — the right one won\'t leave',
|
|
263
279
|
},
|
|
264
280
|
{
|
|
265
281
|
key: 'ambiguityTolerance',
|
|
266
282
|
question:
|
|
267
|
-
|
|
283
|
+
'He\'s been dry all day. No explanation. What happens in your head?',
|
|
268
284
|
type: 'options',
|
|
269
285
|
options: [
|
|
270
|
-
'I
|
|
271
|
-
'I
|
|
272
|
-
'I notice
|
|
273
|
-
|
|
286
|
+
'I replay everything trying to figure out what I did',
|
|
287
|
+
'I convince myself he\'s losing interest and start spiraling',
|
|
288
|
+
'I notice it but wait to see if it\'s a pattern',
|
|
289
|
+
'I genuinely don\'t think about it',
|
|
274
290
|
],
|
|
275
291
|
},
|
|
276
292
|
{
|
|
277
293
|
key: 'statusComparison',
|
|
278
294
|
question:
|
|
279
|
-
|
|
295
|
+
'When he\'s more successful, better looking, or more popular than you — do you feel like you need to earn your place?',
|
|
280
296
|
type: 'scale',
|
|
281
|
-
scaleMinLabel: '
|
|
282
|
-
scaleMaxLabel: '
|
|
297
|
+
scaleMinLabel: 'Yes — I feel the pressure',
|
|
298
|
+
scaleMaxLabel: 'No — I belong wherever I am',
|
|
283
299
|
},
|
|
284
300
|
{
|
|
285
301
|
key: 'emotionalInvestmentSpeed',
|
|
286
302
|
question:
|
|
287
|
-
'
|
|
303
|
+
'You had one amazing date. How fast are you already imagining a future with him?',
|
|
288
304
|
type: 'options',
|
|
289
305
|
options: [
|
|
290
|
-
'
|
|
291
|
-
'
|
|
292
|
-
'
|
|
293
|
-
'
|
|
306
|
+
'Immediately — I can already picture it',
|
|
307
|
+
'Pretty fast — I get excited easily',
|
|
308
|
+
'I enjoy it but stay grounded',
|
|
309
|
+
'I don\'t let myself go there yet',
|
|
294
310
|
],
|
|
295
311
|
},
|
|
296
312
|
{
|
|
297
313
|
key: 'fearOfLosingConnection',
|
|
298
314
|
question:
|
|
299
|
-
'
|
|
315
|
+
'He\'s pulling away. You can feel it. How strong is the urge to chase?',
|
|
300
316
|
type: 'scale',
|
|
301
|
-
scaleMinLabel: '
|
|
302
|
-
scaleMaxLabel: '
|
|
317
|
+
scaleMinLabel: 'I\'d do almost anything to fix it',
|
|
318
|
+
scaleMaxLabel: 'I let him go without a fight',
|
|
303
319
|
},
|
|
304
320
|
{
|
|
305
321
|
key: 'fulfillmentOutsideDating',
|
|
306
322
|
question:
|
|
307
|
-
|
|
323
|
+
'When you\'re single and no one is texting you — how does your life actually feel?',
|
|
308
324
|
type: 'scale',
|
|
309
|
-
scaleMinLabel: '
|
|
310
|
-
scaleMaxLabel: '
|
|
325
|
+
scaleMinLabel: 'Like something important is missing',
|
|
326
|
+
scaleMaxLabel: 'Full and complete on its own',
|
|
311
327
|
},
|
|
312
328
|
{
|
|
313
329
|
key: 'validationSensitivity',
|
|
314
330
|
question:
|
|
315
|
-
|
|
331
|
+
'When someone you like suddenly shows heavy interest — does it make you like them more, or does it not change anything?',
|
|
316
332
|
type: 'scale',
|
|
317
|
-
scaleMinLabel: 'It
|
|
318
|
-
scaleMaxLabel:
|
|
333
|
+
scaleMinLabel: 'It hooks me instantly',
|
|
334
|
+
scaleMaxLabel: 'It doesn\'t change how I feel',
|
|
319
335
|
},
|
|
320
336
|
{
|
|
321
337
|
key: 'relationshipRole',
|
|
322
338
|
question:
|
|
323
|
-
'
|
|
339
|
+
'If you got into a relationship tomorrow, what would it really be for?',
|
|
324
340
|
type: 'options',
|
|
325
341
|
options: [
|
|
326
|
-
'It would
|
|
327
|
-
'It would
|
|
328
|
-
'It would fill a
|
|
329
|
-
'It would make me feel
|
|
342
|
+
'It would add to a life that\'s already good',
|
|
343
|
+
'It would give me companionship I\'m missing',
|
|
344
|
+
'It would fill a void I feel right now',
|
|
345
|
+
'It would finally make me feel chosen',
|
|
330
346
|
],
|
|
331
347
|
},
|
|
332
348
|
];
|
|
@@ -343,44 +359,44 @@ export const ENFORCEMENT_QUESTIONS: EnforcementQuestion[] = [
|
|
|
343
359
|
{
|
|
344
360
|
key: 'cancelDowngrade',
|
|
345
361
|
question:
|
|
346
|
-
'
|
|
347
|
-
options: ['
|
|
362
|
+
'He cancels on you last minute. Again. How many times do you let it slide before you actually do something about it?',
|
|
363
|
+
options: ['Once — that\'s enough', 'Twice — benefit of the doubt', '3+ times before I react', 'Only when it\'s clearly a pattern', 'I usually let it go'],
|
|
348
364
|
},
|
|
349
365
|
{
|
|
350
366
|
key: 'noFollowUpResponse',
|
|
351
367
|
question:
|
|
352
|
-
|
|
368
|
+
'Great date. Then silence for two days. What do you actually do — not what you wish you did?',
|
|
353
369
|
options: [
|
|
354
|
-
'
|
|
355
|
-
'
|
|
356
|
-
'
|
|
357
|
-
'
|
|
358
|
-
'
|
|
370
|
+
'I lose interest on the spot',
|
|
371
|
+
'I mentally mark it against him',
|
|
372
|
+
'I text him and ask directly',
|
|
373
|
+
'I wait and hope he reaches out',
|
|
374
|
+
'I pretend I didn\'t notice',
|
|
359
375
|
],
|
|
360
376
|
},
|
|
361
377
|
{
|
|
362
378
|
key: 'effortDecreaseDowngrade',
|
|
363
379
|
question:
|
|
364
|
-
'
|
|
365
|
-
options: ['
|
|
380
|
+
'His effort drops after the first few dates. The texts get shorter. The plans stop. How long do you pretend it\'s fine?',
|
|
381
|
+
options: ['I catch it immediately', 'I give it one more chance', 'I wait for a clear pattern', 'I usually don\'t pull back'],
|
|
366
382
|
},
|
|
367
383
|
{
|
|
368
384
|
key: 'exclusivityNotDiscussed',
|
|
369
385
|
question:
|
|
370
|
-
|
|
371
|
-
options: ['
|
|
386
|
+
'You\'ve been dating for a while and he still hasn\'t brought up exclusivity. What do you actually do?',
|
|
387
|
+
options: ['I walk away', 'I bring it up myself', 'I give him more time', 'I keep going and hope it comes up'],
|
|
372
388
|
},
|
|
373
389
|
{
|
|
374
390
|
key: 'redFlagSpeed',
|
|
375
391
|
question:
|
|
376
|
-
'
|
|
377
|
-
options: ['
|
|
392
|
+
'You see a red flag early. Something feels off. How long do you ignore it because everything else feels good?',
|
|
393
|
+
options: ['I don\'t — I act immediately', 'I wait to see it again before deciding', 'I need a pattern before I act', 'Only if it\'s something serious'],
|
|
378
394
|
},
|
|
379
395
|
{
|
|
380
396
|
key: 'disappointmentResponse',
|
|
381
397
|
question:
|
|
382
|
-
'
|
|
383
|
-
options: ['
|
|
398
|
+
'He disappoints you. Not a dealbreaker, but it stings. What\'s your real reaction?',
|
|
399
|
+
options: ['I tell him directly', 'I go quiet and pull back', 'I lower my expectations', 'I try harder to make it work', 'I overthink it for days'],
|
|
384
400
|
},
|
|
385
401
|
];
|
|
386
402
|
|
|
@@ -395,85 +411,81 @@ export interface TradeOffQuestion {
|
|
|
395
411
|
export const TRADEOFF_QUESTIONS: TradeOffQuestion[] = [
|
|
396
412
|
{
|
|
397
413
|
key: 'consistencyVsChemistry',
|
|
398
|
-
question: '
|
|
414
|
+
question: 'You can only pick one. Which one wins — every time?',
|
|
399
415
|
options: [
|
|
400
|
-
'
|
|
401
|
-
'Consistent effort even if
|
|
416
|
+
'Intense chemistry, even if he\'s inconsistent',
|
|
417
|
+
'Consistent effort, even if the spark is slow',
|
|
402
418
|
],
|
|
403
419
|
},
|
|
404
420
|
{
|
|
405
421
|
key: 'stabilityVsIntensity',
|
|
406
|
-
question:
|
|
407
|
-
|
|
408
|
-
options: ['Calm and emotionally steady', 'Deeply expressive and intense'],
|
|
422
|
+
question: 'Which one do you actually choose — not which one you should?',
|
|
423
|
+
options: ['The calm, stable one', 'The passionate, intense one'],
|
|
409
424
|
},
|
|
410
425
|
{
|
|
411
426
|
key: 'financialStatusVsCharacter',
|
|
412
|
-
question:
|
|
413
|
-
'When it comes to money habits, which situation feels more comfortable in a partner?',
|
|
427
|
+
question: 'Money. Be honest — which one would you actually pick?',
|
|
414
428
|
options: [
|
|
415
|
-
'
|
|
416
|
-
'
|
|
429
|
+
'Makes great money but spends recklessly',
|
|
430
|
+
'Makes less but is financially responsible',
|
|
417
431
|
],
|
|
418
432
|
},
|
|
419
433
|
{
|
|
420
434
|
key: 'speedVsCertainty',
|
|
421
|
-
question: 'When
|
|
435
|
+
question: 'When something new starts, which version of you shows up?',
|
|
422
436
|
options: [
|
|
423
|
-
'
|
|
424
|
-
'
|
|
437
|
+
'I dive in fast when the energy is right',
|
|
438
|
+
'I slow down and evaluate before committing',
|
|
425
439
|
],
|
|
426
440
|
},
|
|
427
441
|
{
|
|
428
442
|
key: 'independenceVsIntegration',
|
|
429
|
-
question: 'In
|
|
430
|
-
options: ['
|
|
443
|
+
question: 'In a relationship, which one actually sounds like you?',
|
|
444
|
+
options: ['I need my own space and identity', 'I want our lives to merge quickly'],
|
|
431
445
|
},
|
|
432
446
|
{
|
|
433
447
|
key: 'ambitionVsPresence',
|
|
434
|
-
question: 'Which
|
|
435
|
-
options: ['
|
|
448
|
+
question: 'Which absence would hurt more?',
|
|
449
|
+
options: ['He\'s always around but has no ambition', 'He\'s ambitious but never available'],
|
|
436
450
|
},
|
|
437
451
|
{
|
|
438
452
|
key: 'toleratedFlaw',
|
|
439
|
-
question:
|
|
440
|
-
'Looking back on dating experiences, which flaw do you tend to tolerate the longest?',
|
|
453
|
+
question: 'Which of these have you let slide the longest — and you know you shouldn\'t have?',
|
|
441
454
|
options: [
|
|
442
|
-
'
|
|
443
|
-
'
|
|
444
|
-
'
|
|
445
|
-
'
|
|
455
|
+
'Bad at texting back',
|
|
456
|
+
'Won\'t commit at your pace',
|
|
457
|
+
'Always busy with work',
|
|
458
|
+
'Emotionally shut down',
|
|
446
459
|
],
|
|
447
460
|
},
|
|
448
461
|
{
|
|
449
462
|
key: 'attractionKiller',
|
|
450
|
-
question: 'Which
|
|
463
|
+
question: 'Which one makes you lose interest the fastest — even if everything else is good?',
|
|
451
464
|
options: [
|
|
452
|
-
'
|
|
453
|
-
'
|
|
454
|
-
'Hot
|
|
455
|
-
'
|
|
465
|
+
'No drive or initiative',
|
|
466
|
+
'Constant insecurity',
|
|
467
|
+
'Hot and cold behavior',
|
|
468
|
+
'Refuses to talk about where things are going',
|
|
456
469
|
],
|
|
457
470
|
},
|
|
458
471
|
{
|
|
459
472
|
key: 'pastPattern',
|
|
460
|
-
question:
|
|
461
|
-
'Looking back honestly at your past relationships, which description feels closest to your pattern?',
|
|
473
|
+
question: 'Be honest about your track record. Which pattern keeps showing up?',
|
|
462
474
|
options: [
|
|
463
|
-
'
|
|
464
|
-
'
|
|
465
|
-
'
|
|
466
|
-
'
|
|
475
|
+
'I fall for potential instead of proof',
|
|
476
|
+
'I stay way past the expiration date',
|
|
477
|
+
'I leave before giving it a real chance',
|
|
478
|
+
'I give too much too soon',
|
|
467
479
|
],
|
|
468
480
|
},
|
|
469
481
|
{
|
|
470
482
|
key: 'earlyDatingTendency',
|
|
471
|
-
question: 'When
|
|
483
|
+
question: 'When someone new enters the picture, which version of you takes over?',
|
|
472
484
|
options: [
|
|
473
|
-
'
|
|
474
|
-
'
|
|
475
|
-
'
|
|
476
|
-
'
|
|
485
|
+
'I lock in on one person immediately',
|
|
486
|
+
'I keep my options open',
|
|
487
|
+
'I get emotionally attached too fast',
|
|
488
|
+
'I keep a wall up no matter what',
|
|
477
489
|
],
|
|
478
490
|
},
|
|
479
491
|
];
|