What Type of Entrepreneur Are You?

This personality quiz identifies your dominant entrepreneur archetype from five distinct types: The Visionary (big-picture thinker who inspires change), The Operator (execution master who builds systems), The Analyst (data-driven decision maker), The Networker (relationship builder who creates communities), and The Innovator (creative problem-solver who builds new things). Answer questions about your work style, decision-making approach, motivations, and business strategy to discover your primary and secondary archetypes, along with famous entrepreneurs who share your type.

PersonalityPopular

Try the Quiz

🚀 What Type of Entrepreneur Are You?
How do you approach work and problem-solving?
 
 
 
How do you make important business decisions?
 
1Minimize all risks
7Embrace big risks
Minimize all risks
Embrace big risks
 
 
 
What drives you as an entrepreneur?
 
 
 
How do you approach building a business?
 
 
 
See your entrepreneur archetype!
🔮 You are The Visionary!
You see the future before others do. You're driven by big ideas and transformative change. You inspire teams with your compelling vision and aren't afraid to challenge the status quo.
Big-picture thinking • Inspiring leadership • Risk tolerance • Innovation drive
Detail orientation • Patience with execution • Staying grounded
Elon Musk, Steve Jobs, Richard Branson
Your secondary type is ⚙️ The Operator, adding process optimization to your toolkit.
Enter your details to receive your personalized entrepreneur profile
Enter your details to receive a detailed PDF with personalized advice for your archetype
 
 
 
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
export function entrepreneurTypeQuiz(form: FormTs) {
form.setTitle(() => '🚀 What Type of Entrepreneur Are You?');
 
// ============ SCORING SYSTEM ============
const scores = form.state<Record<string, number>>({
visionary: 0,
operator: 0,
analyst: 0,
networker: 0,
innovator: 0
});
 
const updateScore = (type: string, points: number) => {
scores.update(current => ({
...current,
[type]: (current[type] || 0) + points
}));
};
 
type ArchetypeKey = 'visionary' | 'operator' | 'analyst' | 'networker' | 'innovator';
 
const getTopArchetype = (): ArchetypeKey => {
const s = scores();
let maxType: ArchetypeKey = 'visionary';
let maxScore = s['visionary'] || 0;
 
const types: ArchetypeKey[] = ['visionary', 'operator', 'analyst', 'networker', 'innovator'];
for (const type of types) {
if ((s[type] || 0) > maxScore) {
maxScore = s[type] || 0;
maxType = type;
}
}
return maxType;
};
 
const getSecondaryArchetype = (): ArchetypeKey => {
const s = scores();
const top = getTopArchetype();
let secondType: ArchetypeKey = 'operator';
let secondScore = 0;
 
const types: ArchetypeKey[] = ['visionary', 'operator', 'analyst', 'networker', 'innovator'];
for (const type of types) {
if (type !== top && (s[type] || 0) > secondScore) {
secondScore = s[type] || 0;
secondType = type;
}
}
return secondType;
};
 
const archetypeInfo: Record<ArchetypeKey, { emoji: string; title: string; description: string; strengths: string[]; challenges: string[]; famousExamples: string }> = {
visionary: {
emoji: '🔮',
title: 'The Visionary',
description: 'You see the future before others do. You\'re driven by big ideas and transformative change. You inspire teams with your compelling vision and aren\'t afraid to challenge the status quo.',
strengths: ['Big-picture thinking', 'Inspiring leadership', 'Risk tolerance', 'Innovation drive'],
challenges: ['Detail orientation', 'Patience with execution', 'Staying grounded'],
famousExamples: 'Elon Musk, Steve Jobs, Richard Branson'
},
operator: {
emoji: '⚙️',
title: 'The Operator',
description: 'You\'re the execution master. While others dream, you build. You excel at turning ideas into reality through systematic processes, efficient operations, and relentless optimization.',
strengths: ['Process optimization', 'Team management', 'Execution focus', 'Scalability'],
challenges: ['Delegating control', 'Embracing uncertainty', 'Taking big risks'],
famousExamples: 'Tim Cook, Sheryl Sandberg, Ray Kroc'
},
analyst: {
emoji: '📊',
title: 'The Analyst',
description: 'Data is your compass. You make decisions based on evidence, patterns, and logical analysis. You see opportunities others miss by diving deep into numbers and market research.',
strengths: ['Data-driven decisions', 'Risk assessment', 'Strategic planning', 'Problem-solving'],
challenges: ['Analysis paralysis', 'Moving fast', 'Trusting intuition'],
famousExamples: 'Warren Buffett, Jeff Bezos (early), Satya Nadella'
},
networker: {
emoji: '🤝',
title: 'The Networker',
description: 'Relationships are your superpower. You build businesses through connections, partnerships, and community. You understand that success is a team sport and know how to bring people together.',
strengths: ['Relationship building', 'Partnership deals', 'Team recruitment', 'Community creation'],
challenges: ['Solo execution', 'Saying no', 'Deep technical work'],
famousExamples: 'Reid Hoffman, Gary Vaynerchuk, Keith Ferrazzi'
},
innovator: {
emoji: '💡',
title: 'The Innovator',
description: 'You\'re a creative problem-solver who loves building new things. You thrive on experimentation, prototyping, and pushing boundaries. Your passion is creating what doesn\'t yet exist.',
strengths: ['Creative solutions', 'Product development', 'Technical skills', 'Iteration speed'],
challenges: ['Marketing & sales', 'Business fundamentals', 'Scaling beyond MVP'],
famousExamples: 'James Dyson, Sara Blakely, Jack Dorsey'
}
};
 
const getArchetypeColor = (type: ArchetypeKey): string => {
const colors: Record<ArchetypeKey, string> = {
visionary: '#8b5cf6',
operator: '#0891b2',
analyst: '#0d9488',
networker: '#f59e0b',
innovator: '#ec4899'
};
return colors[type];
};
 
// ============ COMPLETION SCREEN ============
form.configureCompletionScreen({
type: 'text',
title: () => {
const top = getTopArchetype();
return `${archetypeInfo[top].emoji} You're ${archetypeInfo[top].title}!`;
},
message: () => {
const top = getTopArchetype();
const secondary = getSecondaryArchetype();
return `${archetypeInfo[top].description}\n\nYour secondary type is ${archetypeInfo[secondary].title}, which adds ${(archetypeInfo[secondary].strengths[0] || '').toLowerCase()} to your entrepreneurial toolkit.`;
}
});
 
// ============ PAGES SETUP ============
const pages = form.addPages('quiz-pages', {
heightMode: 'current-page'
});
 
// ============ PAGE 1: Introduction ============
const page1 = pages.addPage('intro', { mobileBreakpoint: 500 });
 
page1.addRow(row => {
row.addTextPanel('header1', {
label: 'Step 1 of 6: Your Work Style',
computedValue: () => 'How do you approach work and problem-solving?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page1.addSpacer({ height: '24px' });
 
page1.addRow(row => {
row.addRadioButton('problemApproach', {
label: 'When facing a complex business problem, your first instinct is to:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Envision the ideal end state and work backwards' },
{ id: 'process', name: '⚙️ Break it down into manageable steps and create a plan' },
{ id: 'data', name: '📊 Gather data and analyze all possible outcomes' },
{ id: 'people', name: '🤝 Talk to others who\'ve solved similar problems' },
{ id: 'experiment', name: '💡 Start experimenting with quick prototypes' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', process: 'operator', data: 'analyst', people: 'networker', experiment: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page1.addRow(row => {
row.addRadioButton('idealDay', {
label: 'Your ideal workday involves:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'strategy', name: '🎯 Thinking about long-term strategy and future opportunities' },
{ id: 'execution', name: '📋 Checking off tasks and optimizing workflows' },
{ id: 'research', name: '🔍 Deep research and analysis sessions' },
{ id: 'meetings', name: '☕ Back-to-back meetings and relationship building' },
{ id: 'building', name: '🛠️ Heads-down building and creating' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { strategy: 'visionary', execution: 'operator', research: 'analyst', meetings: 'networker', building: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page1.addRow(row => {
row.addRadioButton('teamRole', {
label: 'In a team project, you naturally gravitate toward:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'leader', name: '🚀 Setting the vision and inspiring the team' },
{ id: 'manager', name: '📊 Organizing tasks and ensuring delivery' },
{ id: 'strategist', name: '🧠 Researching options and advising on decisions' },
{ id: 'connector', name: '🔗 Bringing in external resources and partners' },
{ id: 'maker', name: '🔧 Building the actual product or solution' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { leader: 'visionary', manager: 'operator', strategist: 'analyst', connector: 'networker', maker: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
// ============ PAGE 2: Decision Making ============
const page2 = pages.addPage('decisions', { mobileBreakpoint: 500 });
 
page2.addRow(row => {
row.addTextPanel('header2', {
label: 'Step 2 of 6: Decision Making',
computedValue: () => 'How do you make important business decisions?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page2.addSpacer({ height: '24px' });
 
page2.addRow(row => {
row.addRadioButton('bigDecision', {
label: 'When making a major business decision, you rely most on:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'gut', name: '🔮 Gut feeling and intuition about where things are heading' },
{ id: 'track', name: '⚙️ Track record of what\'s worked before' },
{ id: 'numbers', name: '📊 Spreadsheets, projections, and hard data' },
{ id: 'advice', name: '🤝 Advice from trusted mentors and peers' },
{ id: 'test', name: '💡 Quick tests and real-world experiments' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { gut: 'visionary', track: 'operator', numbers: 'analyst', advice: 'networker', test: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page2.addRow(row => {
row.addRatingScale('riskAttitude', {
label: 'How do you feel about taking risks?',
isRequired: true,
preset: 'likert-7',
lowLabel: 'Minimize all risks',
highLabel: 'Embrace big risks',
size: 'md',
alignment: 'center',
variant: 'buttons',
onValueChange: (val) => {
if (val == null) return;
// 1-2: analyst/minimize, 3: networker/share, 4: operator/calculated, 5: innovator/iterate, 6-7: visionary/embrace
if (val <= 2) updateScore('analyst', 4);
else if (val === 3) updateScore('networker', 4);
else if (val === 4) updateScore('operator', 4);
else if (val === 5) updateScore('innovator', 4);
else updateScore('visionary', 4);
}
});
});
 
page2.addRow(row => {
row.addTextPanel('riskHint', {
computedValue: () => {
const val = page2.ratingScale('riskAttitude')?.value();
if (val == null) return '';
if (val <= 2) return 'Analyst style: Thorough analysis before action';
if (val === 3) return 'Networker style: Share risks through partnerships';
if (val === 4) return 'Operator style: Calculated risks with planning';
if (val === 5) return 'Innovator style: Small risks, fast iteration';
return 'Visionary style: Big bets for big rewards';
},
customStyles: {
fontSize: '0.8rem',
color: '#6b7280',
textAlign: 'center',
marginTop: '0.25rem',
fontStyle: 'italic'
}
});
});
 
page2.addRow(row => {
row.addRadioButton('failure', {
label: 'When a project fails, your first reaction is to:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'pivot', name: '🔮 Look for a bigger opportunity that emerged' },
{ id: 'postmortem', name: '⚙️ Do a detailed post-mortem on processes' },
{ id: 'analyze', name: '📊 Analyze what the data predicted vs. reality' },
{ id: 'discuss', name: '🤝 Discuss with others to get different perspectives' },
{ id: 'rebuild', name: '💡 Start building the next iteration immediately' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { pivot: 'visionary', postmortem: 'operator', analyze: 'analyst', discuss: 'networker', rebuild: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
// ============ PAGE 3: Motivation & Values ============
const page3 = pages.addPage('motivation', { mobileBreakpoint: 500 });
 
page3.addRow(row => {
row.addTextPanel('header3', {
label: 'Step 3 of 6: Motivation & Values',
computedValue: () => 'What drives you as an entrepreneur?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page3.addSpacer({ height: '24px' });
 
page3.addRow(row => {
row.addRadioButton('mainDriver', {
label: 'Your primary motivation for entrepreneurship is:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'change', name: '🌍 Changing the world and making a lasting impact' },
{ id: 'build', name: '🏗️ Building something that runs like a well-oiled machine' },
{ id: 'master', name: '🎓 Mastering a domain and making smart decisions' },
{ id: 'community', name: '👥 Building a community and meaningful relationships' },
{ id: 'create', name: '✨ Creating something new that didn\'t exist before' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { change: 'visionary', build: 'operator', master: 'analyst', community: 'networker', create: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page3.addRow(row => {
row.addRadioButton('success', {
label: 'You\'ll know you\'ve succeeded when:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'transform', name: '🚀 Your company has transformed an entire industry' },
{ id: 'scale', name: '📈 You\'ve built a scalable, profitable operation' },
{ id: 'right', name: '✅ Your analysis proved right and the strategy worked' },
{ id: 'network', name: '🌐 You\'ve built an incredible network and community' },
{ id: 'product', name: '💎 Your product is used and loved by many' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { transform: 'visionary', scale: 'operator', right: 'analyst', network: 'networker', product: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page3.addRow(row => {
row.addEmojiRating('energy', {
label: 'What gives you the most energy?',
isRequired: true,
preset: 'custom',
emojis: [
{ id: 'future', emoji: '🔭', label: 'Future vision' },
{ id: 'progress', emoji: '✅', label: 'Progress' },
{ id: 'insights', emoji: '💡', label: 'Insights' },
{ id: 'connections', emoji: '🤝', label: 'Connections' },
{ id: 'shipping', emoji: '🚀', label: 'Shipping' }
],
size: 'lg',
showLabels: true,
alignment: 'center',
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { future: 'visionary', progress: 'operator', insights: 'analyst', connections: 'networker', shipping: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
// ============ PAGE 4: Business Approach ============
const page4 = pages.addPage('business', { mobileBreakpoint: 500 });
 
page4.addRow(row => {
row.addTextPanel('header4', {
label: 'Step 4 of 6: Business Approach',
computedValue: () => 'How do you approach building a business?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page4.addSpacer({ height: '24px' });
 
page4.addRow(row => {
row.addRadioButton('startup', {
label: 'If starting a new business today, you\'d focus first on:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'mission', name: '🎯 Defining a compelling mission and vision' },
{ id: 'operations', name: '⚙️ Setting up efficient processes and systems' },
{ id: 'market', name: '📊 Deep market research and competitive analysis' },
{ id: 'team', name: '👥 Assembling the right team and advisors' },
{ id: 'mvp', name: '🛠️ Building a working prototype ASAP' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { mission: 'visionary', operations: 'operator', market: 'analyst', team: 'networker', mvp: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page4.addRow(row => {
row.addRadioButton('competition', {
label: 'Your approach to competition is:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'disrupt', name: '💥 Make competition irrelevant by redefining the game' },
{ id: 'outexecute', name: '🏃 Out-execute them with better operations' },
{ id: 'outsmart', name: '🧠 Outsmart them with better strategy and positioning' },
{ id: 'collaborate', name: '🤝 Find ways to collaborate or coexist' },
{ id: 'outinnovate', name: '🚀 Out-innovate with a better product' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { disrupt: 'visionary', outexecute: 'operator', outsmart: 'analyst', collaborate: 'networker', outinnovate: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page4.addRow(row => {
row.addRadioButton('growth', {
label: 'Your preferred growth strategy is:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'moonshot', name: '🌙 Moonshot thinking - 10x or nothing' },
{ id: 'systematic', name: '📈 Systematic, sustainable scaling' },
{ id: 'datadriven', name: '📊 Data-driven optimization and expansion' },
{ id: 'partnerships', name: '🤝 Strategic partnerships and acquisitions' },
{ id: 'productled', name: '💎 Product-led growth through word of mouth' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { moonshot: 'visionary', systematic: 'operator', datadriven: 'analyst', partnerships: 'networker', productled: 'innovator' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
// ============ PAGE 5: Results ============
const page5 = pages.addPage('results', { mobileBreakpoint: 500 });
 
page5.addRow(row => {
row.addTextPanel('header5', {
label: 'Step 5 of 6: Your Results',
computedValue: () => 'See your entrepreneur archetype!',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page5.addSpacer({ height: '24px' });
 
page5.addRow(row => {
row.addTextPanel('resultTitle', {
computedValue: () => {
const top = getTopArchetype();
return `${archetypeInfo[top].emoji} You are ${archetypeInfo[top].title}!`;
},
customStyles: {
fontSize: '1.8rem',
fontWeight: '800',
textAlign: 'center',
color: getArchetypeColor(getTopArchetype()),
padding: '20px',
background: '#f9fafb',
borderRadius: '12px',
border: `3px solid ${getArchetypeColor(getTopArchetype())}`
}
});
});
 
page5.addRow(row => {
row.addTextPanel('resultDescription', {
computedValue: () => archetypeInfo[getTopArchetype()].description,
customStyles: {
fontSize: '1rem',
color: '#4b5563',
textAlign: 'center',
lineHeight: '1.7',
padding: '20px',
marginTop: '1rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('strengths', {
label: '💪 Your Strengths',
computedValue: () => archetypeInfo[getTopArchetype()].strengths.join(' • '),
customStyles: {
fontSize: '0.95rem',
color: '#059669',
padding: '15px',
background: '#ecfdf5',
borderRadius: '8px',
marginTop: '1rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('challenges', {
label: '🎯 Growth Areas',
computedValue: () => archetypeInfo[getTopArchetype()].challenges.join(' • '),
customStyles: {
fontSize: '0.95rem',
color: '#d97706',
padding: '15px',
background: '#fffbeb',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('famous', {
label: '⭐ Famous Examples',
computedValue: () => archetypeInfo[getTopArchetype()].famousExamples,
customStyles: {
fontSize: '0.95rem',
color: '#6b7280',
padding: '15px',
background: '#f3f4f6',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('secondary', {
computedValue: () => {
const secondary = getSecondaryArchetype();
return `Your secondary type is ${archetypeInfo[secondary].emoji} ${archetypeInfo[secondary].title}, adding ${(archetypeInfo[secondary].strengths[0] || '').toLowerCase()} to your toolkit.`;
},
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
textAlign: 'center',
padding: '15px',
marginTop: '1rem',
fontStyle: 'italic'
}
});
});
 
// ============ PAGE 6: Lead Capture ============
const page6 = pages.addPage('lead-capture', { mobileBreakpoint: 500 });
 
page6.addRow(row => {
row.addTextPanel('header6', {
label: 'Step 6 of 6: Get Your Report',
computedValue: () => 'Enter your details to receive your personalized entrepreneur profile',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page6.addSpacer({ height: '24px' });
 
page6.addRow(row => {
row.addTextPanel('leadCapture', {
label: '📧 Get Your Full Entrepreneur Profile',
computedValue: () => 'Enter your details to receive a detailed PDF with personalized advice for your archetype',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280'
}
});
});
 
page6.addRow(row => {
row.addTextbox('name', {
label: 'Your Name',
isRequired: true,
placeholder: 'John Smith'
}, '1fr');
 
row.addEmail('email', {
label: 'Email',
isRequired: true,
placeholder: 'john@startup.com'
}, '1fr');
});
 
page6.addRow(row => {
row.addTextbox('company', {
label: 'Company (if any)',
placeholder: 'Acme Startup'
}, '1fr');
 
row.addDropdown('stage', {
label: 'Business Stage',
options: [
{ id: 'idea', name: '💭 Just an idea' },
{ id: 'building', name: '🛠️ Building MVP' },
{ id: 'launched', name: '🚀 Launched' },
{ id: 'growing', name: '📈 Growing' },
{ id: 'scaling', name: '🌍 Scaling' }
],
placeholder: 'Select stage'
}, '1fr');
});
 
page6.addRow(row => {
row.addCheckboxList('consent', {
options: [
{ id: 'report', name: '📄 Send me my detailed archetype report', isRequired: true },
{ id: 'tips', name: '💡 Send me entrepreneur tips based on my type' },
{ id: 'community', name: '👥 Connect me with similar entrepreneurs' }
],
defaultValue: ['report'],
orientation: 'vertical'
});
});
 
// ============ PDF REPORT ============
form.configurePdf('entrepreneur-report', pdf => {
pdf.configure({
filename: 'entrepreneur-archetype-report.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: '📄 Download Your Profile',
header: {
title: 'Entrepreneur Archetype Report',
subtitle: 'Your Personalized Founder Profile'
},
footer: {
text: 'Generated by FormTs Entrepreneur Quiz',
showPageNumbers: true
}
});
 
const top = getTopArchetype();
const secondary = getSecondaryArchetype();
 
pdf.addSection('Your Primary Archetype', section => {
section.addRow(row => {
row.addField('Type', `${archetypeInfo[top].emoji} ${archetypeInfo[top].title}`);
});
section.addText(archetypeInfo[top].description);
});
 
pdf.addSection('Strengths & Challenges', section => {
section.addRow(row => {
row.addField('Key Strengths', archetypeInfo[top].strengths.join(', '));
});
section.addRow(row => {
row.addField('Growth Areas', archetypeInfo[top].challenges.join(', '));
});
section.addRow(row => {
row.addField('Famous Examples', archetypeInfo[top].famousExamples);
});
});
 
pdf.addSection('Your Secondary Type', section => {
section.addRow(row => {
row.addField('Type', `${archetypeInfo[secondary].emoji} ${archetypeInfo[secondary].title}`);
});
section.addText(`Your secondary archetype adds ${(archetypeInfo[secondary].strengths[0] || '').toLowerCase()} to your entrepreneurial toolkit.`);
});
 
pdf.addPageBreak();
 
pdf.addSection('Score Breakdown', section => {
const s = scores();
section.addTable(
['Archetype', 'Score', 'Percentage'],
[
['🔮 Visionary', `${s['visionary'] || 0}`, `${Math.round(((s['visionary'] || 0) / 48) * 100)}%`],
['⚙️ Operator', `${s['operator'] || 0}`, `${Math.round(((s['operator'] || 0) / 48) * 100)}%`],
['📊 Analyst', `${s['analyst'] || 0}`, `${Math.round(((s['analyst'] || 0) / 48) * 100)}%`],
['🤝 Networker', `${s['networker'] || 0}`, `${Math.round(((s['networker'] || 0) / 48) * 100)}%`],
['💡 Innovator', `${s['innovator'] || 0}`, `${Math.round(((s['innovator'] || 0) / 48) * 100)}%`]
]
);
});
 
pdf.addSection('Recommendations for Your Type', section => {
if (top === 'visionary') {
section.addText('1. Partner with strong operators who can execute your vision');
section.addText('2. Set up systems to stay grounded in day-to-day realities');
section.addText('3. Practice patience - transformative change takes time');
section.addText('4. Communicate your vision clearly and consistently');
} else if (top === 'operator') {
section.addText('1. Make time for strategic thinking and long-term planning');
section.addText('2. Learn to delegate and trust others with execution');
section.addText('3. Take calculated risks outside your comfort zone');
section.addText('4. Partner with visionaries who can inspire direction');
} else if (top === 'analyst') {
section.addText('1. Set deadlines to avoid analysis paralysis');
section.addText('2. Trust your intuition once you have enough data');
section.addText('3. Practice making fast decisions on small matters');
section.addText('4. Balance research with action and experimentation');
} else if (top === 'networker') {
section.addText('1. Develop deep expertise in your core domain');
section.addText('2. Learn to say no to protect your time');
section.addText('3. Build systems that don\'t require your presence');
section.addText('4. Balance relationship building with execution');
} else {
section.addText('1. Learn marketing and sales fundamentals');
section.addText('2. Focus on business model before more features');
section.addText('3. Partner with business-minded co-founders');
section.addText('4. Validate demand before building extensively');
}
});
});
 
// ============ SUBMIT BUTTON ============
form.configureSubmitButton({
label: () => `🚀 Get My Full ${archetypeInfo[getTopArchetype()].title} Report`
});
 
form.configureSubmitBehavior({
sendToServer: true
});
}
 

Frequently Asked Questions

What are the 5 entrepreneur archetypes?

The five archetypes are: Visionary (big-picture thinkers like Elon Musk), Operator (execution masters like Tim Cook), Analyst (data-driven leaders like Warren Buffett), Networker (relationship builders like Gary Vaynerchuk), and Innovator (creative builders like James Dyson).

Can I be more than one type?

Yes! Most entrepreneurs have a primary archetype and one or two secondary types. Your secondary archetype adds complementary strengths to your primary style. The quiz shows both your dominant and secondary types.

How accurate is this quiz?

This quiz is based on common entrepreneurial patterns and behaviors observed across successful founders. While no quiz can perfectly capture your unique personality, it provides useful insights for self-reflection and team building.

How can I use my archetype results?

Use your results to: understand your natural strengths and blind spots, find complementary co-founders or team members, develop skills in your growth areas, and make better decisions aligned with your natural style.