-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
1129 lines (1032 loc) · 59.6 KB
/
team.html
File metadata and controls
1129 lines (1032 loc) · 59.6 KB
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
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Meet the Team | Flash</title>
<meta name="title" content="Meet the Team | Flash">
<meta name="description" content="Meet the people building Flash — the Caribbean's Lightning wallet. A Caribbean team on a mission to bring financial freedom to the region." />
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://getflash.io/team.html">
<meta property="og:title" content="Meet the Team | Flash">
<meta property="og:description" content="The people building the Caribbean's Lightning wallet. Caribbean roots, global mission.">
<meta property="og:image" content="https://getflash.io/assets/img/download-og-image-small.png">
<!-- Canonical -->
<link rel="canonical" href="https://getflash.io/team.html">
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="assets/img/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/img/favicon-16x16.png" sizes="16x16" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/pages/team.css" />
<!-- Dark Mode Init -->
<script src="js/core/dark-mode-init.js"></script>
</head>
<body class="team-page">
<div id="header-placeholder"></div>
<main>
<!-- Page: Team Hero -->
<section id="pg-team-hero" class="team-hero page">
<div class="container">
<div class="section-header-centered">
<span class="section-badge">Our Team</span>
<h1 class="hero-title">Meet the Flash <span class="highlight-text">Team</span></h1>
<p class="section-subtitle">Caribbean people building for Caribbean people. We're a small team with a big mission — bring financial freedom to the region through Bitcoin.</p>
</div>
</div>
</section>
<!-- End of Team Hero -->
<!-- Unified Team Grid Section -->
<section id="team-grid-section" class="page" style="padding-top: 0; padding-bottom: 80px;">
<div class="container">
<div class="team-grid">
<!-- Jabari Ennis -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Jabari Ennis">
<div class="team-image-container">
<img src="assets/img/Jabari-Ennis-Profile-Pic.jpg" alt="Jabari Ennis" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Jabari Ennis</h3>
<div class="team-skills">
<span class="skill-badge leadership">Leadership</span>
<span class="skill-badge operations">Founder</span>
</div>
<div class="team-bio">
Founder of Flash with 21+ years in tech consulting. Passionate about creating affordable
financial services for the Caribbean and building inclusive economic systems.
</div>
<div class="team-social">
<a href="https://linkedin.com/in/jabariennis" target="_blank" class="no-style light">
<img src="assets/img/icon-linkedin-black.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://linkedin.com/in/jabariennis" target="_blank" class="no-style dark">
<img src="assets/img/icon-linkedin-white.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://x.com/PoleVaultDream" target="_blank" class="no-style light">
<img src="assets/img/icon-x-black.png" alt="Twitter" class="social-icon">
</a>
<a href="https://x.com/PoleVaultDream" target="_blank" class="no-style dark">
<img src="assets/img/icon-x-white.png" alt="Twitter" class="social-icon">
</a>
<a href="https://github.com/islandbitcoin" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/islandbitcoin" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Michael Ennis -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Michael Ennis">
<div class="team-image-container">
<img src="assets/img/Michael-Ennis-Profile-Pic.png" alt="Michael Ennis" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Michael Ennis</h3>
<div class="team-skills">
<span class="skill-badge leadership">Leadership</span>
<span class="skill-badge operations">Sales</span>
</div>
<div class="team-bio">
Leads Flash's business growth and strategic partnerships. Extensive background in
business technology with deep Caribbean roots and expertise in regional market
expansion.
</div>
<div class="team-social">
<a href="https://www.linkedin.com/in/michael-ennis-5916031b6/" target="_blank"
class="no-style light">
<img src="assets/img/icon-linkedin-black.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://www.linkedin.com/in/michael-ennis-5916031b6/" target="_blank"
class="no-style dark">
<img src="assets/img/icon-linkedin-white.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://x.com/LNFlash" target="_blank" class="no-style light">
<img src="assets/img/icon-x-black.png" alt="Twitter" class="social-icon">
</a>
<a href="https://x.com/LNFlash" target="_blank" class="no-style dark">
<img src="assets/img/icon-x-white.png" alt="Twitter" class="social-icon">
</a>
<a href="https://github.com/aliantjamaica" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/aliantjamaica" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Charlene Fadirepo -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Charlene Fadirepo">
<div class="team-image-container">
<img src="assets/img/charlene.jpeg" alt="Charlene Fadirepo" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Charlene Fadirepo</h3>
<div class="team-skills">
<span class="skill-badge leadership">Leadership</span>
<span class="skill-badge operations">Strategy</span>
</div>
<div class="team-bio">
Strategic thinker focused on organizational growth and effective communication. Helps
shape Flash's strategic direction and ensures clear messaging across all initiatives.
</div>
<div class="team-social">
<a href="https://www.linkedin.com/in/charlenefadirepo" target="_blank"
class="no-style light">
<img src="assets/img/icon-linkedin-black.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://www.linkedin.com/in/charlenefadirepo" target="_blank"
class="no-style dark">
<img src="assets/img/icon-linkedin-white.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://x.com/CharFadirepo" target="_blank" class="no-style light">
<img src="assets/img/icon-x-black.png" alt="Twitter" class="social-icon">
</a>
<a href="https://x.com/CharFadirepo" target="_blank" class="no-style dark">
<img src="assets/img/icon-x-white.png" alt="Twitter" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Hank Romaine -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Hank Romaine">
<div class="team-image-container">
<img src="assets/img/hank-romaine.jpg"
alt="Hank Romaine" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Hank Romaine</h3>
<div class="team-skills">
<span class="skill-badge leadership">Leadership</span>
<span class="skill-badge operations">Finance</span>
</div>
<div class="team-bio">
Financial expert ensuring Flash's fiscal health and sustainable growth. Brings deep
expertise in financial planning and analysis to support the company's expansion.
</div>
<div class="team-social">
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Ajene Ennis -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Ajene Ennis">
<div class="team-image-container">
<img src="assets/img/Ajene-Japan.png" alt="Ajene Ennis" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Ajene Ennis</h3>
<div class="team-skills">
<span class="skill-badge leadership">Leadership</span>
<span class="skill-badge operations">Support</span>
</div>
<div class="team-bio">
Dedicated to providing exceptional customer support and ensuring every user has a
positive experience with Flash. Champions user feedback and continuous service
improvement.
</div>
<div class="team-social">
<a href="https://github.com/ajemonx" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/ajemonx" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Kimarley -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Kimarley">
<div class="team-image-container">
<img src="assets/img/placeholder2.jpeg" alt="Kimarley" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Kimarley</h3>
<div class="team-skills">
<span class="skill-badge leadership">AI Chat Analyst</span>
<span class="skill-badge operations">Support</span>
</div>
<div class="team-bio">
Dedicated to providing exceptional customer support and ensuring every user has a
positive experience with Flash. Champions user feedback and continuous service
improvement.
</div>
<div class="team-social">
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- NJ -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about NJ">
<div class="team-image-container">
<img src="assets/img/NJ.png" alt="NJ" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">NJ</h3>
<div class="team-skills">
<span class="skill-badge leadership">Customer Success Agent</span>
<span class="skill-badge operations">Support</span>
</div>
<div class="team-bio">
Dedicated to providing exceptional customer support and ensuring every user has a
positive experience with Flash. Champions user feedback and continuous service
improvement.
</div>
<div class="team-social">
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Nick Jamoldinov -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Nick Jamoldinov">
<div class="team-image-container">
<img src="https://pbs.twimg.com/profile_images/1881647831402065920/g5GV0N_Y_400x400.jpg"
alt="Nick Jamoldinov" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Nick Jamoldinov</h3>
<div class="team-skills">
<span class="skill-badge engineering">UI/UX</span>
<span class="skill-badge operations">Development</span>
</div>
<div class="team-bio">
Creative designer and frontend developer crafting beautiful, intuitive user experiences.
Focused on making complex financial technology accessible and engaging for all users.
</div>
<div class="team-social">
<a href="https://github.com/Nodirbek75" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/Nodirbek75" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Ben Hindman -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Ben Hindman">
<div class="team-image-container">
<img src="assets/img/Ben.jpg" alt="Ben Hindman" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Ben Hindman</h3>
<div class="team-skills">
<span class="skill-badge engineering">Application</span>
<span class="skill-badge operations">Development</span>
</div>
<div class="team-bio">
Backend engineer building robust, scalable systems that power Flash's infrastructure.
Ensures platform reliability and implements cutting-edge financial technology solutions.
</div>
<div class="team-social">
<a href="https://github.com/brh28" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/brh28" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Abhay Raizada -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Abhay Raizada">
<div class="team-image-container">
<img src="assets/img/abhay.png" alt="Abhay Raizada" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Abhay Raizada</h3>
<div class="team-skills">
<span class="skill-badge engineering">Nostr</span>
<span class="skill-badge operations">Development</span>
</div>
<div class="team-bio">
Nostr protocol specialist working on decentralized communication infrastructure. Builds
open, censorship-resistant systems that enhance Flash's messaging and social features.
</div>
<div class="team-social">
<a href="https://github.com/abh3po" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/abh3po" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Charmaine Grant -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Charmaine Grant">
<div class="team-image-container">
<img src="assets/img/CharmaineGrant.jpeg" alt="Charmaine Grant" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Charmaine Grant</h3>
<div class="team-skills">
<span class="skill-badge field">Portland, Jamaica</span>
<span class="skill-badge operations">Sales</span>
</div>
<div class="team-bio">
Regional coordinator building strong community connections and ensuring Flash meets
local needs. Bridges technology with grassroots community engagement across the
Caribbean.
</div>
<div class="team-social">
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Roger Kerr -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Roger Kerr">
<div class="team-image-container">
<img src="assets/img/roger.png" alt="Roger Kerr" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Roger Kerr</h3>
<div class="team-skills">
<span class="skill-badge field">St. Ann, Jamaica</span>
<span class="skill-badge operations">Sales</span>
</div>
<div class="team-bio">
Regional development coordinator focused on sustainable growth and community
partnerships. Works to ensure Flash's technology creates lasting positive impact in
local communities.
</div>
<div class="team-social">
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Alana Igbe -->
<div class="team-member" tabindex="0" role="button" aria-label="Learn more about Alana Igbe">
<div class="team-image-container">
<img src="assets/img/alana.png" alt="Alana Igbe" class="team-image">
</div>
<div class="team-info">
<h3 class="team-name">Alana Igbe</h3>
<div class="team-skills">
<span class="skill-badge field">Kingston, Jamaica</span>
<span class="skill-badge operations">Sales</span>
</div>
<div class="team-bio">
Regional development coordinator focused on sustainable growth and community
partnerships. Works to ensure Flash's technology creates lasting positive impact in
local communities.
</div>
<div class="team-social">
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="GitHub" class="social-icon">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="GitHub" class="social-icon">
</a>
<!-- Add social links if available -->
</div>
<div class="expand-indicator">+</div>
</div>
</div>
<!-- Join the Team Card — Option C: dark aspirational card -->
<a href="#open-positions" class="join-team-card" aria-label="View open positions at Flash">
<div class="join-team-image-area">
<p class="join-team-tagline">Caribbean people building<br>for Caribbean people</p>
<div class="join-team-icon">
<svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.9)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/>
<circle cx="9" cy="7" r="4"/>
<line x1="19" y1="8" x2="19" y2="14"/>
<line x1="22" y1="11" x2="16" y2="11"/>
</svg>
</div>
</div>
<div class="join-team-body">
<h3 class="join-team-name">This Could Be You!</h3>
<p class="join-team-sub">We're growing. Come build Flash.</p>
<span class="join-team-btn">
View open positions
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" aria-hidden="true">
<line x1="5" y1="12" x2="19" y2="12"/>
<polyline points="12 5 19 12 12 19"/>
</svg>
</span>
</div>
</a>
</div>
</div>
</section>
<!-- End of Unified Team Grid Section -->
<!-- Join Our Team Section -->
<section id="join-team" class="join-team-cta page">
<div class="container">
<div class="cta-box">
<div class="cta-content">
<h2>Join Our Team</h2>
<p>We're always looking for talented individuals who are passionate about financial inclusion
and technological innovation in the Caribbean.</p>
<div class="cta-buttons">
<a href="/#pg-contact" class="cta-button primary large">
<span>Get in Touch</span>
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End of Join Our Team Section -->
<!-- Open Positions Section -->
<section id="open-positions" class="open-positions-section page">
<div class="container">
<div class="section-header-centered">
<span class="section-badge">Careers</span>
<h2 class="section-title">Open Positions</h2>
<p class="section-subtitle">Join us in building the future of finance in the Caribbean</p>
</div>
<!-- Job Search and Filter -->
<div class="job-filters">
<div class="search-box">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<circle cx="11" cy="11" r="8"></circle>
<path d="m21 21-4.35-4.35"></path>
</svg>
<input type="text" id="job-search" placeholder="Search positions...">
</div>
<div class="filter-buttons">
<button class="filter-btn active" data-filter="all">All Positions</button>
<button class="filter-btn" data-filter="full-time">Full-time</button>
<button class="filter-btn" data-filter="part-time">Part-time</button>
<button class="filter-btn" data-filter="internship">Internship</button>
</div>
</div>
<div class="job-listings">
<!-- Developer Internship Position -->
<div class="job-card collapsed" data-type="internship" data-location="jamaica">
<div class="job-header">
<div class="job-title-area">
<h3 class="job-title">Software Developer Intern</h3>
<div class="job-meta">
<span class="job-location">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>
Jamaica
</span>
<span class="job-type">Internship</span>
</div>
</div>
<div class="job-actions">
<div class="job-badge">New</div>
<div class="job-expand-indicator">+</div>
</div>
</div>
<div class="job-description">
<p>Join Flash as a Developer Intern and gain hands-on experience building cutting-edge
Bitcoin and Lightning Network applications. This is a unique opportunity for university
students to work on real-world fintech projects while learning about blockchain
technology and financial innovation in the Caribbean.</p>
<h4>Prerequisite Skills:</h4>
<ul>
<li>Currently enrolled in a Jamaican university (Computer Science or related program)
</li>
<li>Basic understanding of at least one programming language</li>
<li>Computer with reliable internet access</li>
<li>Familiarity with version control (Git) is a plus</li>
<li>Available 15-20 hours per week</li>
</ul>
<h4>What You'll Do:</h4>
<ul>
<li>Assist in developing and maintaining Flash's web and mobile applications</li>
<li>Work with modern technologies including JavaScript, React, and Node.js</li>
<li>Learn about Bitcoin, Lightning Network, and blockchain development</li>
<li>Collaborate with experienced developers on feature development and bug fixes</li>
<li>Participate in code reviews and team meetings</li>
<li>Contribute to documentation and testing efforts</li>
</ul>
<h4>Ideal Candidate:</h4>
<ul>
<li>Currently enrolled in a Computer Science or related degree program at a Jamaican
university</li>
<li>Basic understanding of programming concepts (TypeScript, React-Native, Docker)</li>
<li>Familiarity with HTML, CSS, and web development fundamentals</li>
<li>Prompt Engineering skills for AI agents (e.g., ChatGPT, GitHub Copilot)</li>
<li>Strong problem-solving skills and eagerness to learn</li>
<li>Interest in Bitcoin or fintech</li>
<li>Available for 15-20 hours per week during semester (flexible schedule)</li>
<li>Excellent communication skills and ability to work in a team</li>
</ul>
</div>
<div class="job-footer">
<button class="cta-button primary apply-now-btn" data-position="Software Developer Intern">
<span>Apply Now</span>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- End of Open Positions Section -->
<!-- Job Application Modal -->
<div id="application-modal" class="application-modal">
<div class="modal-overlay"></div>
<div class="modal-content">
<button class="modal-close" aria-label="Close application form">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</button>
<div class="modal-header">
<h2>Apply for Position</h2>
<p class="applying-for">Applying for: <span id="job-position-name"></span></p>
</div>
<form id="job-application-form" class="job-application-form">
<input type="hidden" id="position-name" name="position-name">
<div class="form-row">
<div class="form-group">
<label for="applicant-name">Full Name *</label>
<input type="text" id="applicant-name" name="applicant-name" required>
</div>
<div class="form-group">
<label for="applicant-email">Email *</label>
<input type="email" id="applicant-email" name="applicant-email" required>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="applicant-phone">Phone Number *</label>
<input type="tel" id="applicant-phone" name="applicant-phone" required>
</div>
<div class="form-group">
<label for="applicant-linkedin">LinkedIn / Portfolio (Optional)</label>
<input type="url" id="applicant-linkedin" name="applicant-linkedin" placeholder="https://">
</div>
</div>
<div class="form-group">
<label for="applicant-resume">Resume / CV *</label>
<div class="file-upload-wrapper">
<input type="file" id="applicant-resume" name="applicant-resume" accept=".pdf,.doc,.docx"
required>
<div class="file-upload-display">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<polyline points="17 8 12 3 7 8"></polyline>
<line x1="12" y1="3" x2="12" y2="15"></line>
</svg>
<span class="file-name">Click to upload or drag & drop</span>
<span class="file-hint">PDF, DOC, or DOCX (max 5MB)</span>
</div>
</div>
</div>
<div class="form-group">
<label for="applicant-message">Cover Letter / Message *</label>
<textarea id="applicant-message" name="applicant-message" rows="6"
placeholder="Tell us why you're a great fit for this position..." required></textarea>
</div>
<div class="form-actions">
<button type="button" class="btn-secondary" id="cancel-application">Cancel</button>
<button type="submit" class="btn-primary">
<span>Submit Application</span>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</button>
</div>
</form>
<div class="submission-success" style="display: none;">
<div class="success-icon">
<svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<h3>Application Submitted!</h3>
<p>Thank you for your interest in joining the Flash team. We've received your application and will
review it shortly.</p>
<button type="button" class="btn-primary" id="close-success">Close</button>
</div>
</div>
</div>
<!-- End of Job Application Modal -->
<!-- Team CTA Section -->
<section class="team-cta-section">
<div class="container">
<div class="team-cta-box">
<h2>Built by Caribbean people, for the Caribbean.</h2>
<p>We're growing. If you're passionate about Bitcoin and financial inclusion, come build with us.</p>
<div class="team-cta-actions">
<a href="/app" class="btn-primary">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" aria-hidden="true">
<path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/>
</svg>
Get Flash Free
</a>
<a href="https://discord.gg/AkPpxJzC2R" target="_blank" rel="noopener" class="btn-outline-white">
Join our Discord
</a>
</div>
</div>
</div>
</section>
</main>
<div id="footer-placeholder"></div>
<div id="svg-icons-placeholder"></div>
<!-- Load components BEFORE other scripts -->
<script src="js/core/component-loader.js"></script>
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<!-- GSAP & Plugins CDN -->
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/MotionPathPlugin.min.js"></script>
<!-- Custom JS -->
<script src="js/core/main.js"></script>
<script src="js/modules/btcTracker.js"></script>
<script src="js/modules/jobFilters.js"></script>
<!-- Team Grid Interactivity Script -->
<script>
$(document).ready(function () {
// Randomize team member order on page load (keep join-team-card at the end)
function randomizeTeamOrder() {
const $teamGrid = $('.team-grid');
const $teamMembers = $teamGrid.children('.team-member').not('.join-team-card');
const $joinCard = $teamGrid.children('.join-team-card');
// Convert jQuery object to array and shuffle
const membersArray = $teamMembers.toArray();
for (let i = membersArray.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[membersArray[i], membersArray[j]] = [membersArray[j], membersArray[i]];
}
// Remove all members and re-append in random order
$teamMembers.remove();
$.each(membersArray, function (index, member) {
$teamGrid.append(member);
});
// Always append join-team-card at the end
if ($joinCard.length) {
$teamGrid.append($joinCard);
}
}
// Randomize order on page load
randomizeTeamOrder();
// Team member card expansion functionality
$('.team-member').on('click', function (e) {
e.preventDefault();
const $card = $(this);
const $bio = $card.find('.team-bio');
const $indicator = $card.find('.expand-indicator');
// Toggle expanded state
$card.toggleClass('expanded');
// Update indicator
if ($card.hasClass('expanded')) {
$indicator.text('−');
$indicator.attr('aria-label', 'Collapse details');
} else {
$indicator.text('+');
$indicator.attr('aria-label', 'Expand details');
}
});
// Handle keyboard accessibility
$('.team-member').on('keydown', function (e) {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
$(this).click();
}
});
// Prevent social link clicks from triggering card expansion
$('.team-social a').on('click', function (e) {
e.stopPropagation();
});
// Prevent join-team CTA button from triggering card expansion
$('.join-team-cta-btn').on('click', function (e) {
e.stopPropagation();
});
// Add smooth scroll animation for better UX
$('.team-member').on('click', function () {
const $card = $(this);
setTimeout(() => {
if ($card.hasClass('expanded')) {
$('html, body').animate({
scrollTop: $card.offset().top - 100
}, 300);
}
}, 100);
});
// Initialize accessibility attributes
$('.team-member').each(function () {
const $card = $(this);
const $indicator = $card.find('.expand-indicator');
$indicator.attr('aria-label', 'Expand details');
$card.attr('aria-expanded', 'false');
});
// Update aria-expanded when cards are toggled
$('.team-member').on('click', function () {
const $card = $(this);
const isExpanded = $card.hasClass('expanded');
$card.attr('aria-expanded', isExpanded);
});
// ========================================
// JOB APPLICATION MODAL FUNCTIONALITY
// ========================================
const $modal = $('#application-modal');
const $form = $('#job-application-form');
const $successDiv = $('.submission-success');
// Open modal when "Apply Now" is clicked
$('.apply-now-btn').on('click', function (e) {
e.preventDefault();
e.stopPropagation(); // Prevent card expansion
const positionTitle = $(this).data('position');
$('#job-position-name').text(positionTitle);
$('#position-name').val(positionTitle);
$modal.addClass('active');
$('body').css('overflow', 'hidden'); // Prevent body scroll when modal is open
});
// Close modal
function closeModal() {
$modal.removeClass('active');
$('body').css('overflow', ''); // Re-enable body scroll
// Reset form after a delay
setTimeout(() => {
$form[0].reset();
$('.file-name').text('Click to upload or drag & drop');
$form.show();
$successDiv.hide();
}, 300);
}
$('.modal-close, .modal-overlay, #cancel-application, #close-success').on('click', closeModal);
// File upload display
$('#applicant-resume').on('change', function () {
const fileName = this.files[0]?.name || 'Click to upload or drag & drop';
$('.file-name').text(fileName);
});
// Form validation
function validateJobForm() {
const name = $('#applicant-name').val().trim();
const email = $('#applicant-email').val().trim();
const phone = $('#applicant-phone').val().trim();
const message = $('#applicant-message').val().trim();
const resume = $('#applicant-resume')[0].files[0];
let errors = [];
// Name validation
if (!name) {
errors.push('Please enter your full name');
$('#applicant-name').css('border-color', '#ef4444');
} else {
$('#applicant-name').css('border-color', '');
}
// Email validation
const emailPattern = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
if (!email || !emailPattern.test(email)) {
errors.push('Please enter a valid email address');
$('#applicant-email').css('border-color', '#ef4444');
} else {
$('#applicant-email').css('border-color', '');
}
// Phone validation
if (!phone) {
errors.push('Please enter your phone number');
$('#applicant-phone').css('border-color', '#ef4444');
} else {
$('#applicant-phone').css('border-color', '');
}
// Message validation
if (!message) {
errors.push('Please provide a cover letter or message');
$('#applicant-message').css('border-color', '#ef4444');
} else {
$('#applicant-message').css('border-color', '');
}
// Resume validation
if (!resume) {
errors.push('Please upload your resume/CV');
$('.file-upload-wrapper').css('border-color', '#ef4444');
} else {
// Check file size (5MB max)
const maxSize = 5 * 1024 * 1024; // 5MB in bytes
if (resume.size > maxSize) {
errors.push('Resume file size must be less than 5MB');
$('.file-upload-wrapper').css('border-color', '#ef4444');
} else {
$('.file-upload-wrapper').css('border-color', '');
}
}
if (errors.length > 0) {
alert(errors.join('\n'));
return false;
}
return true;
}
// Form submission
$form.on('submit', function (e) {
e.preventDefault();
if (!validateJobForm()) {
return;
}
// Create FormData object to handle file upload
const formData = new FormData();
formData.append('name', $('#applicant-name').val().trim());
formData.append('email', $('#applicant-email').val().trim());
formData.append('phone', $('#applicant-phone').val().trim());
formData.append('linkedin', $('#applicant-linkedin').val().trim());
formData.append('position', $('#position-name').val());
formData.append('message', $('#applicant-message').val().trim());
formData.append('resume', $('#applicant-resume')[0].files[0]);
// Disable submit button and show loading state
const $submitBtn = $form.find('button[type="submit"]');
const originalText = $submitBtn.find('span').text();
$submitBtn.prop('disabled', true);
$submitBtn.find('span').text('Submitting...');
// TODO: wire up real backend (EmailJS / API endpoint) before production launch
// For now: show success after a brief delay to simulate submission
setTimeout(function () {
$form.hide();
$successDiv.show();
document.querySelector('.modal-content').scrollTop = 0;
$submitBtn.prop('disabled', false);
$submitBtn.find('span').text(originalText);
}, 800);
});
});
</script>