-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.js
1334 lines (1329 loc) · 69.7 KB
/
i18n.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
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
// noinspection UnnecessaryLabelJS,CommaExpressionJS
import i18next from 'i18next'
import I18NextVue from 'i18next-vue'
import LanguageDetector from 'i18next-browser-languagedetector'
i18next
.use(LanguageDetector)
.init({
debug: true,
fallbackLng: 'en',
resources: {
en: {
translation: {
languages: {
en: 'English',
fr: 'French',
},
firstname: 'Anton',
lastname: 'Cherednichenko',
post: 'CTO',
links: [
{
name: 'LinkedIn',
url: 'https://www.linkedin.com/in/hrsart/',
icon: '/linkedin.webp',
},
{
name: 'GitHub',
url: 'https://www.github.com/hrsa/',
icon: '/github.webp',
},
{
name: 'Email',
url: 'mailto:[email protected]',
icon: '/email.webp',
},
{
name: 'Download CV',
url: 'https://anton.eco/cv/en_cv_anton_cherednichenko.pdf',
icon: '/download.webp',
},
],
experience: 'Experience',
education: 'Education',
skills: 'Skills',
about: {
tech: {
title: 'Skills',
languages: ['PHP', 'Java', 'Javascript', 'Typescript', 'Python', 'SQL', 'GraphQL', 'HTML', 'CSS'],
love: ['Tinkerwell', 'Ray', 'Expose', 'Ngrok', 'PHPUnit', 'Pest', 'Cypress'],
frameworks: ['Laravel', 'Livewire', 'Spring Boot', 'FastAPI', 'Flask', 'Vue.js', 'React.js', 'Inertia.js', 'Tailwind'],
tools: ['IntelliJ Idea', 'PhpStorm', 'PyCharm', 'DataGrip', 'Git', 'Postman', 'Bruno', 'Figma', 'Docker'],
crm: ['Hubspot', 'ClickUp', 'Trello', 'Asana', 'Jira'],
sales: ['Waalaxy', 'CaptainData', 'BreakCold', 'LaGrowthMachine'],
adobe: ['Photoshop', 'Illustrator', 'Lightroom', 'Premiere', 'After Effects'],
},
languages: {
title: 'Languages',
list: [
{
name: 'English',
level: 4,
mastery: 'Native',
icon: '/flags/gb.svg',
},
{
name: 'French',
level: 4,
mastery: 'Native',
icon: '/flags/fr.svg',
},
{
name: 'Russian',
level: 4,
mastery: 'Native',
icon: '/flags/ru.svg',
},
{
name: 'Italian',
level: 3,
mastery: 'Intermediate',
icon: '/flags/it.svg',
},
{
name: 'Spanish',
level: 3,
mastery: 'Intermediate',
icon: '/flags/es.svg',
},
{
name: 'German',
level: 3,
mastery: 'Intermediate',
icon: '/flags/de.svg',
},
{
name: 'Portuguese',
level: 2,
mastery: 'Elementary',
icon: '/flags/pt.svg',
},
{
name: 'Dutch',
level: 2,
mastery: 'Elementary',
icon: '/flags/nl.svg',
},
{
name: 'Japanese',
level: 1,
mastery: 'Beginner',
icon: '/flags/jp.svg',
},
{
name: 'Arabic',
level: 1,
mastery: 'Beginner',
icon: '/flags/arab.svg',
},
{
name: 'Greek',
level: 1,
mastery: 'Beginner',
icon: '/flags/gr.svg',
},
{
name: 'Icelandic',
level: 1,
mastery: 'Beginner',
icon: '/flags/is.svg',
},
// {
// name: 'Lithuanian',
// level: 1,
// mastery: 'Beginner',
// icon: '/flags/lt.svg',
// },
],
},
},
jobs: [
{
id: 1,
logo: '/logo/calendize.webp',
dates: '2024 - Present',
company: 'Calendize.it',
title: 'Founder',
city: 'Paris',
responsibilities: [
{
id: 1,
name: "Technology roadmap",
type: 'tech',
data: 1,
description: [
{
icon: 'tech',
content: 'Created the technology roadmap for Calendize, a micro-SaaS project built from scratch, to streamline scheduling workflows.',
},
{
icon: 'business',
content: 'Established the product’s vision, architecture, and delivery plan.',
},
],
},
{
id: 2,
name: "Tech stack",
type: 'tech',
data: 2,
description: [
{
icon: 'tech',
content: 'Selected and implemented the tech stack to deliver real-time interactivity and scalable API architecture',
},
],
},
{
id: 3,
name: "CI/CD pipelines",
type: 'tech',
data: 3,
description: [
{
icon: 'tech',
content: 'Introduced CI/CD pipelines to enable efficient iteration and future feature expansion',
},
],
},
{
id: 4,
name: "Architecture",
type: ['tech', 'success'],
data: 4,
description: [
{
icon: 'tech',
content: 'Built a foundation for long-term scalability while ensuring seamless collaboration with early adopters',
},
],
},
],
},
{
id: 2,
logo: '/logo/impactmaker.webp',
dates: '2023 - 2024',
company: 'ImpactMaker.ai',
title: 'CTO, Co-founder',
city: 'Paris',
responsibilities: [
{
id: 1,
name: 'Architecture',
type: 'tech',
data: 5,
description: [
{
icon: 'tech',
content: 'Organized the architecture design process for a real-time OpenAI-powered chatbot, using an appropriate tech stack to ensure scalability and performance',
},
{
icon: 'tech',
content: 'Stack used: Vue.js, Tailwind CSS with a Laravel API connected via websockets)',
},
],
},
{
id: 2,
name: 'Team management',
type: 'business',
data: 6,
description: [
{
icon: 'business',
content: 'Built and managed a small high-performing development team, establishing workflows and processes to deliver the MVP on schedule',
},
],
},
{
id: 3,
name: 'Delivery optimization',
type: ['business', 'success'],
data: 7,
description: [
{
icon: 'business',
content: 'Translated business needs into technical solutions, overseeing the full-stack development and delivering a product that enhanced user engagement and company impact',
},
],
},
],
},
{
id: 3,
logo: '/logo/globedreamers.webp',
dates: '2019 - 2024',
company: 'GlobeDreamers',
title: 'CTO, Co-founder',
city: 'Paris',
responsibilities: [
{
id: 1,
name: 'Organizational scaling',
type: ['business', 'success'],
data: 8,
description: [
{
icon: 'business',
content: 'Scaled the company over five years, increasing total funds raised by 1,700% from €72,000 to €1,300,000.'
},
{
icon: 'business',
content: 'Grew the platform\'s user base by 350%, from 4,000 to over 14,000 active users.',
},
{
icon: 'tech',
content: 'Expanded the technical team from 2 to 18 members',
},
],
},
{
id: 2,
name: 'Agile and Shape Up Implementation',
type: 'business',
data: 9,
description: [
{
icon: 'business',
content: 'Implemented Agile and Shape Up methodologies, optimizing workflows and delivering key features faster, resulting in increased platform adoption and engagement',
},
],
},
{
id: 3,
name: 'AI-driven feature',
type: ['tech', 'success'],
data: 10,
description: [
{
icon: 'tech',
content: 'Integrated AI-driven features, transforming platform capabilities and attracting new corporate partners, growing the total number of partnerships from 90 to over 800',
},
],
},
{
id: 4,
name: 'Tech stack',
type: 'tech',
data: 11,
description: [
{
icon: 'tech',
content: 'Modernized the tech stack with extensive codebase refactoring, API optimization, and CI/CD implementation, reducing operational costs while improving scalability and system performance',
},
],
},
],
},
{
id: 4,
logo:
'/logo/expo.webp',
dates:
'2017 - 2019',
company:
'Russia World Expo-2025 Bid Committee',
title:
'Director of international development',
city:
'Paris',
responsibilities:
[
{
id: 1,
name: 'Operations management',
type: 'business',
data: 12,
description: [
{
icon: 'business',
content: 'Led the international strategy for Russia\'s bid for Expo 2025, managing a team of 12 in Paris',
},
{
icon: 'business',
content: 'Directed global outreach and partnership negotiations with representatives from over 170 countries.',
},
],
},
{
id: 2,
name: 'Development strategy',
type: 'business',
data: 13,
description: [
{
icon: 'business',
content: 'Designed and executed a comprehensive development strategy while managing a €20M budget and ensuring its alignment with the KPIs',
},
],
},
{
id: 3,
name: 'Negotiations and partnerships',
type: ['business', 'success'],
data: 14,
description: [
{
icon: 'business',
content: 'Established high-impact partnerships and conducted "big deal" negotiations with international stakeholders',
},
],
},
{
id: 4,
name: 'Team management',
type: 'business',
data: 15,
description: [
{
icon: 'business',
content: 'Fostered team collaboration and streamlined operations to deliver results under tight deadlines, showcasing adaptability and leadership in high-pressure international contexts',
},
],
},
],
},
{
id: 5,
logo:
'/logo/trade-delegation.webp',
dates:
'2012 - 2017',
company:
'Trade Delegation of the Russian Federation in France',
title:
'Deputy Commercial Director',
city:
'Paris',
responsibilities:
[
{
id: 1,
name: 'Operations management',
type: 'business',
data: 16,
description: [
{
icon: 'business',
content: 'Managed the 15-person division, responsible for advising senior executives of Russian and French companies in their international development strategies',
},
],
},
{
id: 2,
name: 'Team performance',
type: ['business', 'success'],
data: 17,
description: [
{
icon: 'business',
content: 'Developed and implemented processes for team coordination and project prioritization, improving efficiency and enabling the division to exceed targets by 260% in signed contract value (€130M vs. €50M goal)',
},
],
},
{
id: 3,
name: 'Team management',
type: 'business',
data: 18,
description: [
{
icon: 'business',
content: 'Mentored and empowered team members to drive performance and achieve objectives, building a culture of accountability and growth',
},
],
},
{
name: 'Strategic partnerships',
id: 4,
type: ['business', 'success'],
data: 19,
description: [
{
icon: 'business',
content: 'Oversaw strategic partnerships and market development efforts, facilitating 86 new international contracts across sectors such as aviation, IT, energy, and public safety',
},
],
},
],
},
{
id: 6,
logo:
'/logo/trade-delegation.webp',
dates:
'2010 - 2012',
company:
'Trade Delegation of the Russian Federation in France',
title:
'International partnerships manager',
city:
'Paris',
responsibilities:
[
{
id: 1,
name: 'Operations management',
type: 'business',
data: 20,
description: [
{
icon: 'business',
content: 'Management of a 3-person team, responsible for OECD adhesion projects management',
},
],
},
{
id: 2,
name: 'Negotiations',
type: 'business',
data: 21,
description: [
{
icon: 'business',
content: 'Daily political and commercial negotiations with representatives of more than 150 countries',
},
],
},
{
id: 3,
name: 'Research and reporting',
type: 'business',
data: 22,
description: [
{
icon: 'business',
content: 'Collection of information, analysis of relevant legislation, reporting to the relevant ministries',
},
],
},
{
id: 4,
name: 'International treaties signed',
type: ['business', 'success'],
data: 23,
description: [
{
icon: 'business',
content: 'Participated in the negotiation of international treaties:'
},
{
icon: 'sublist',
content: '<li>Convention on Combating Bribery of Foreign Public Officials in International Business Transactions</li>' +
'<li>Convention on Mutual Administrative Assistance in Tax Matters</li>',
},
],
},
],
},
{
id: 7,
logo:
'/logo/bearingpoint.webp',
dates:
'2009 - 2010',
company:
'Bearingpoint',
title:
'Business intelligence analyst',
city:
'Moscow',
responsibilities:
[
{
id: 1,
type: 'tech',
data: 24,
name: 'SAP R/3 implementation',
description: [
{
icon: 'tech',
content: 'ERP system integration (SAP R/3)',
},
{
icon: 'business',
content: 'Harmonization of the operational processes of the oil company "Rosneft"',
},
{
icon: 'business',
content: 'Assistance during the acquisition offer of "British Petroleum"',
},
],
},
],
},
{
id: 8,
logo:
'/logo/uralsib.webp',
dates:
'2007 - 2008',
company:
'Uralsib',
title:
'Business process analyst',
city:
'Moscow',
responsibilities:
[
{
id: 1,
type: 'tech',
data: 25,
name: 'Business process mapping',
description: [
{
icon: 'business',
content: 'Business process mapping in the digital form (ARIS) to facilitate the integration of the ERP system',
},
],
},
],
},
],
diplomas: [
{
date: '2019',
title: 'Executive MBA',
comment: '<div>Winner of 3 scholarships:</div>' +
'<div>“Emerging and Developing Markets”, “High Potential”, “International Experience”</div>',
school: [
{
name: 'ESSEC Business School',
city: 'Paris',
logo: '/logo/essec.webp',
},
{
name: 'Mannheim Business School',
city: 'Mannheim',
logo: '/logo/mbs.webp',
},
{
name: 'Georgetown University\'s McCourt School of Public Policy',
city: 'Washington DC',
logo: '/logo/mcspp.webp',
},
{
name: 'Waseda Business School',
city: 'Tokyo',
logo: '/logo/waseda.webp',
},
{
name: 'ESSEC Asia-Pacific',
city: 'Singapore',
logo: '/logo/essec.webp',
},
],
},
{
date: '2017',
title: 'Leadership, team spirit and managing difficult situations',
school: [
{
name: 'Écoles de Saint-Cyr Coëtquidan',
city: 'Guer',
logo: '/logo/stcyr.webp',
},
],
},
{
date: '2010',
title: 'Master of Economics and International Politics',
school: [
{
name: 'Higher School of Economics',
city: 'Moscow',
logo: '/logo/hse.webp',
},
],
},
],
courses: "Lifelong learning",
lifelong: [
{
id: 1,
name: 'Laracasts',
logo: '/logo/laracasts.webp',
},
{
id: 2,
name: 'Laravel Daily',
logo: '/logo/laravel-daily.webp',
},
{
id: 3,
name: 'Vue School',
logo: '/logo/vue-school.webp',
},
{
id: 4,
name: 'Spatie',
logo: '/logo/spatie.webp',
},
],
}
},
fr: {
translation: {
languages: {
en: 'Anglais',
fr: 'Français',
},
firstname: 'Anton',
lastname: 'Cherednichenko',
post: 'CTO',
links: [
{
name: 'LinkedIn',
url: 'https://www.linkedin.com/in/hrsart/',
icon: '/linkedin.webp',
},
{
name: 'GitHub',
url: 'https://www.github.com/hrsa/',
icon: '/github.webp',
},
{
name: 'Email',
url: 'mailto:[email protected]',
icon: '/email.webp',
},
{
name: 'Télécharger le CV',
url: 'https://anton.eco/cv/fr_cv_anton_cherednichenko.pdf',
icon: '/download.webp',
},
],
experience: 'Expérience',
education: 'Formations',
skills: 'Compétences',
about: {
tech: {
title: "Compétences",
languages: ['PHP', 'Java', 'Javascript', 'Typescript', 'Python', 'SQL', 'GraphQL', 'HTML', 'CSS'],
love: ['Tinkerwell', 'Ray', 'Expose', 'Ngrok', 'PHPUnit', 'Pest', 'Cypress'],
frameworks: ['Laravel', 'Livewire', 'Spring Boot', 'FastAPI', 'Flask', 'Vue.js', 'React.js', 'Inertia.js', 'Tailwind'],
tools: ['IntelliJ Idea', 'PhpStorm', 'PyCharm', 'DataGrip', 'Git', 'Postman', 'Bruno', 'Figma', 'Docker'],
crm: ['Hubspot', 'ClickUp', 'Trello', 'Asana', 'Jira'],
sales: ['Waalaxy', 'CaptainData', 'BreakCold', 'LaGrowthMachine'],
adobe: ['Photoshop', 'Illustrator', 'Lightroom', 'Premiere', 'After Effects'],
},
languages: {
title: 'Langues',
list: [
{
name: 'Anglais',
level: 4,
mastery: 'Trilingue',
icon: '/flags/gb.svg',
},
{
name: 'Français',
level: 4,
mastery: 'Trilingue',
icon: '/flags/fr.svg',
},
{
name: 'Russe',
level: 4,
mastery: 'Trilingue',
icon: '/flags/ru.svg',
},
{
name: 'Italien',
level: 3,
mastery: 'Intermédiaire',
icon: '/flags/it.svg',
},
{
name: 'Espagnol',
level: 3,
mastery: 'Intermédiaire',
icon: '/flags/es.svg',
},
{
name: 'Allemand',
level: 3,
mastery: 'Intermédiaire',
icon: '/flags/de.svg',
},
{
name: 'Portugais',
level: 2,
mastery: 'Débutant',
icon: '/flags/pt.svg',
},
{
name: 'Néerlandais',
level: 2,
mastery: 'Débutant',
icon: '/flags/nl.svg',
},
{
name: 'Japonais',
level: 1,
mastery: 'Notions',
icon: '/flags/jp.svg',
},
{
name: 'Arabe',
level: 1,
mastery: 'Notions',
icon: '/flags/arab.svg',
},
{
name: 'Greque',
level: 1,
mastery: 'Notions',
icon: '/flags/gr.svg',
},
{
name: 'Islandais',
level: 1,
mastery: 'Notions',
icon: '/flags/is.svg',
},
// {
// name: 'Lithuanien',
// level: 1,
// mastery: 'Notions',
// icon: '/flags/lt.svg',
// },
],
},
},
jobs: [
{
id: 1,
logo: '/logo/calendize.webp',
dates: '2024 - Présent',
company: 'Calendize.it',
title: 'Fondateur',
city: 'Paris',
responsibilities: [
{
id: 1,
name: "Roadmap technologique",
type: 'tech',
data: 1,
description: [
{
icon: 'tech',
content: 'Établi la roadmap technologique pour Calendize, un projet micro-SaaS conçu de zéro, afin d’optimiser les workflows de planification.',
},
{
icon: 'business',
content: 'Défini la vision du produit, de son architecture et de son plan de livraison.',
},
],
},
{
id: 2,
name: "Tech stack",
type: 'tech',
data: 2,
description: [
{
icon: 'tech',
content: 'Sélectionné et implementé la tech stack pour offrir une interactivité en temps réel et une architecture API évolutive',
},
],
},
{
id: 3,
name: "Pipelines CI/CD",
type: 'tech',
data: 3,
description: [
{
icon: 'tech',
content: 'Introduit des pipelines CI/CD pour permettre des itérations efficaces et une expansion future des fonctionnalités',
},
],
},
{
id: 4,
name: "Architecture",
type: ['tech', 'success'],
data: 4,
description: [
{
icon: 'tech',
content: 'Construit une base solide pour les évolutions à venir, en assurant une collaboration fluide avec les premiers utilisateurs.',
},
],
},
],
},
{
id: 2,
logo: '/logo/impactmaker.webp',
dates: '2023 - 2024',
company: 'ImpactMaker.ai',
title: 'CTO, Co-fondateur',
city: 'Paris',
responsibilities: [
{
id: 1,
name: 'Architecture',
type: 'tech',
data: 5,
description: [
{
icon: 'tech',
content: 'Conçu l’architecture d’un chatbot en temps réel basé sur OpenAI, avec une tech stack pensée pour garantir performance et évolutivité',
},
{
icon: 'tech',
content: 'Stack utiliée: Vue.js, Tailwind CSS avec API Laravel connecté via websockets)',
},
],
},
{
id: 2,
name: 'Gestion d\'équipe',
type: 'business',
data: 6,
description: [
{
icon: 'business',
content: 'Monté et encadré une petite équipe de développeurs performants, en définissant des workflows et les processus clairs pour livrer le MVP dans les délais définis',
},
],
},
{
id: 3,
name: 'Supervision du développement full-stack',
type: ['business', 'success'],
data: 7,
description: [
{
icon: 'business',
content: 'Transformé les besoins d’entreprise en solutions concrètes, supervisé le développement full-stack et livré un produit qui booste l’engagement des utilisateurs et l’impact des entreprises',
},
],
},
],
},
{
id: 3,
logo: '/logo/globedreamers.webp',
dates: '2019 - 2024',
company: 'GlobeDreamers',
title: 'CTO, Co-fondateur',
city: 'Paris',
responsibilities: [
{
id: 1,
name: 'Gestion de la croissance',
type: ['business', 'success'],
data: 8,
description: [
{
icon: 'business',
content: 'Fait évoluer l’entreprise sur cinq ans, en augmentant les fonds levés de 1700%, passant de 72000€ à 1300000€.'
},
{
icon: 'business',
content: 'Croissance de la base d’utilisateurs de la plateforme de 350%, de 4000 à plus de 14000 utilisateurs actifs.',
},
{
icon: 'tech',
content: 'Agrandi l’effectif de l’équipe technique de 2 à 18.',
},
],
},
{
id: 2,
name: 'Implémentation Agile and Shape Up',
type: 'business',
data: 9,
description: [
{
icon: 'business',
content: 'Mis en place les méthodologies Agile et Shape Up, optimisant les workflows et accélérant la livraison des fonctionnalités principales, ce qui a contribué à l’adoption et l’engagement sur la plateforme',
},
],
},
{
id: 3,
name: 'Fonctionnalités IA',
type: ['tech', 'success'],
data: 10,
description: [
{
icon: 'tech',
content: 'Intégré des fonctionnalités basées sur l’IA, améliorant la plateforme et attirant de nouveaux partenaires corporatifs, faisant passer le nombre total de partenariats de 90 à plus de 800',
},
],
},
{
id: 4,
name: 'Tech stack',
type: 'tech',
data: 11,
description: [
{
icon: 'tech',
content: 'Modernisé la tech stack grâce à un refactoring approfondi du code, une optimisation de l’API et la mise en place de pipelines CI/CD, réduisant les coûts opérationnels et améliorant la scalabilité et les performances',
},
],
},
],
},
{
id: 4,
logo:
'/logo/expo.webp',
dates:
'2017 - 2019',
company:
'Comité de candidature de Russie pour l\'EXPO 2025',
title:
'Directeur du développement international',
city:
'Paris',
responsibilities:
[
{
id: 1,
name: 'Gestion des opérations',
type: 'business',
data: 12,
description: [
{
icon: 'business',