forked from keenethics/keenethics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.config.js
1160 lines (1147 loc) · 35.8 KB
/
main.config.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
const maskTitle = technology => `${technology} Development`;
const maskDescription = technology => `Looking to hire ${technology} developers?
Appnovation, a ${technology} development company, specializes in ${technology} development services.
Hire our ${technology} developers today.`;
export const config = {
navigationMinPointsHeight: 90,
navigation: [
{
name: 'Services',
points: [
{
name: 'Web Development',
description: 'Responsive and user-oriented web coding',
metaTitle: 'Custom Web Development Company - Keenethics',
metaDescription: 'Looking to hire web developers? Appnovation, a web development company, specializes in web development services. Hire our web developers today',
href: '/services-web-development',
icon: {
name: 'web',
alt: 'Web development',
},
type: 'icon',
},
{
name: 'Desktop Applications',
description: 'Native applications with flawless workflow',
metaTitle: 'Desktop Application Development Company & Desktop Software App Development - Keenethics',
metaDescription: 'Looking to hire Desktop Application developers? Appnovation, a desktop app development company, specializes in Desktop Application development services. Hire our desktop app developers today',
href: '/services-desktop-applications',
icon: {
name: 'dapp',
alt: 'Desktop applications',
},
type: 'icon',
},
{
name: 'Mobile Development',
description: 'Slick and fast iOS and Android apps for your needs',
metaTitle: 'Mobile App Development | Professional App Development Company - Keenethics',
metaDescription: 'Looking to hire mobile app developers? Appnovation, a mobile app development company, specializes in mobile application development services. Hire our mobile app developers today',
href: '/services-mobile-development',
icon: {
name: 'mdev',
alt: 'Mobile development',
},
type: 'icon',
},
{
name: 'Outstaffing',
description: 'Process of using by one company another`s company staff',
metaTitle: 'Outstaffing company that helps to find highly qualified developers - Keenethics',
metaDescription: '',
href: '/services-outstaffing',
icon: {
name: 'outs',
alt: 'Outstaffing',
},
type: 'icon',
},
{
name: 'Proof of Concept',
metaTitle: 'The Proof Of Concept Solution - Keenethics',
description:
'Realization of a certain method or idea in order to demonstrate its feasibility',
href: '/services-proof',
icon: {
name: 'pcon',
alt: 'Proof of concept',
},
type: 'icon',
},
],
},
{
name: 'Approach',
points: [
{
name: 'Lean Approach',
description: 'Systematic method for the elimination of waste',
href: '/approach-lean-approach',
icon: {
name: 'lean',
alt: 'Lean approach',
},
type: 'icon',
},
{
name: 'Agile Project Management',
description:
'Alterative, incremental method of managing the design and build activities of engineering',
href: '/approach-agile-project-management',
metaTitle: 'Agile project management companies',
metaDescription: 'Agile Project Management services and Agile solutions from Keenethics services help deliver your business software on time and on budget.',
icon: {
name: 'agile',
alt: 'Agile project management',
},
type: 'icon',
},
{
name: 'Minimum Viable Product',
description:
'A product with just enough features to gather validated learning about the product',
metaTitle: 'MVP development company',
metaDescription: 'Outsource your MVP development and let us build a product your customers will love. We do prototyping, design (UX/UI) and everything in between.',
href: '/approach-minimum-viable-product',
icon: {
name: 'min-valuable',
alt: 'Minimum viable product',
},
type: 'icon',
},
{
name: 'Cutting Edge Technologies',
description:
'We use only the best and the most up-to-date technologies',
href: '/approach-cutting-edge',
icon: {
name: 'cutting',
alt: 'Cutting edge technologies',
},
type: 'icon',
},
{
name: 'High Performance',
description: 'Why our team is very creative and productive',
href: '/approach-high-performance',
icon: {
name: 'high-performance',
alt: 'High performance',
},
type: 'icon',
},
{
name: 'High Quality Software',
description: 'Well-tested, carefully-crafted masterpiece',
href: '/approach-high-quality',
icon: {
name: 'high-quality',
alt: 'High quality software',
},
type: 'icon',
},
],
},
{
name: 'Technologies',
points: [
{
name: 'Apps',
description: 'Slick mobile apps for both, Android and iOS',
href: '/tech-apps',
icon: {
name: 'apps',
alt: 'Apps',
},
type: 'icon',
},
{
name: 'Front-End',
description:
'Front-end development is a process of the creation site’s client-side',
href: '/tech-front-end',
icon: {
name: 'front-end',
alt: 'Front-end',
},
type: 'icon',
},
{
name: 'Back-End',
description: 'Flawless code with no exceptions',
href: '/tech-back-end',
icon: {
name: 'back-end',
alt: 'Back-end',
},
type: 'icon',
},
{
name: 'DataBase',
description: 'Tons of information precisely used and securely stored',
href: '/tech-data-base',
icon: {
name: 'data-base',
alt: 'Database',
},
type: 'icon',
},
{
name: 'API Integration',
description: 'We will integrate everything you need',
href: '/tech-api-integration',
icon: {
name: 'API-integration',
alt: 'API integration',
},
type: 'icon',
},
],
},
{
name: 'Portfolio',
description: '???',
metaTitle: 'Portfolio Keenethics',
metaDescription: '???',
href: '/portfolio',
points: [
{
name: 'All',
href: '/portfolio?chosen=All'
},
{
name: 'Business Digitalization',
href: '/portfolio?chosen=Business Digitalization'
},
{
name: 'Startups',
href: '/portfolio?chosen=Startups'
},
{
name: 'MVP',
href: '/portfolio?chosen=MVP'
},
{
name: 'Other',
href: '/portfolio?chosen=Other'
},
]
},
{
name: 'Blog',
description: 'Articles based on our experience',
metaTitle: 'Web Development News & Ideas - Blog Keenethics',
metaDescription: 'Read the latest news and opinions about software development from Keenethics Blog - all articles are based on our experience!',
href: '/blog',
},
{
name: 'Careers',
description: '',
metaTitle: 'Careers at Software Development Company - Keenethics',
metaDescription: 'Careers at software development company Keenethics',
href: '/careers',
},
{
name: 'About',
points: [
{
name: 'Team',
description: 'Meat our Squad',
href: '/about-team',
icon: {
name: 'team',
alt: 'Team',
},
type: 'icon',
},
{
name: 'Open Source',
description: 'Ethical support for the community',
href: '/about-open-source',
icon: {
name: 'open-source',
alt: 'Open source',
},
type: 'icon',
},
],
},
{
name: 'Contacts',
description: 'Have an idea? We can`t wait to help you implement it!',
metaTitle: 'Contacts - Office And Locations - Keenethics',
metaDescription: 'Have an idea? We can`t wait to help you implement it! Contact Keenethics software development company to get a professional insight into your business idea!',
href: '/contacts',
type: 'hidden',
},
],
careers: [
{
position: 'Full Stack js Capt-lieutenant',
experience: '5 years of experience',
description: `<p>Mobile app development is a time-consuming and creative process at the same
time. If we want to make a mobile app that is talked about, downloaded and opened again
and again, it's not enough to make just a technically perfect product.</p>
<p>We need to invest in it all the knowledge and inspiration. Both, the app developers team
and business side must ${'get'} involved to a process.</p>`,
image: 'corvette_captain',
},
{
position: 'Meteor js Astronaut',
experience: '12 years of experience',
description: `<p>Time-consuming and creative downloaded process at the same time. If we want to
make a mobile app that is talked about, and opened again and invest again, it's not
enough to make just a technically perfect product.</p>
<p>We need to invest in it all the knowledge and inspiration. Both, the app developers team and
business side must and opened agai ${'get'} involved to a process.</p>`,
image: 'astronaut',
},
{
position: 'Full Stack js MidShipman',
experience: '2 years of experience',
description: `<p>Time-consuming and creative downloaded process at the same time. If we want to
make a mobile app that is talked about, and opened again and invest again, it's not
enough to make just a technically perfect product.</p>
<p>We need to invest in it all the knowledge and inspiration. Both, the app developers team and
business side must and opened agai ${'get'} involved to a process.</p>`,
image: 'counter_admiral',
},
{
position: 'Full Stack js Capt',
experience: '5 years of experience',
description: `<p>Mobile app development is a time-consuming and creative process at the same
time. If we want to make a mobile app that is talked about, downloaded and opened again
and again, it's not enough to make just a technically perfect product.</p>
<p>We need to invest in it all the knowledge and inspiration. Both, the app developers team
and business side must ${'get'} involved to a process.</p>`,
image: 'corvette_captain',
},
{
position: 'Meteor js',
experience: '12 years of experience',
description: `<p>Time-consuming and creative downloaded process at the same time. If we want to
make a mobile app that is talked about, and opened again and invest again, it's not
enough to make just a technically perfect product.</p>
<p>We need to invest in it all the knowledge and inspiration. Both, the app developers team and
business side must and opened agai ${'get'} involved to a process.</p>`,
image: 'astronaut',
},
{
position: 'Full Stack js',
experience: '2 years of experience',
description: `<p>Time-consuming and creative downloaded process at the same time. If we want to
make a mobile app that is talked about, and opened again and invest again, it's not
enough to make just a technically perfect product.</p>
<p>We need to invest in it all the knowledge and inspiration. Both, the app developers team and
business side must and opened agai ${'get'} involved to a process.</p>`,
image: 'counter_admiral',
},
],
social: [
{
name: 'Facebook',
class: 'soc-1',
href: 'https://www.facebook.com/KeenEthics.development',
},
{
name: 'Linkedin',
class: 'soc-2',
href: 'https://www.linkedin.com/company/keen-ethics',
},
{
name: 'Github',
class: 'soc-3',
href: 'https://github.com/keenethics',
},
{
name: 'GooglePlus',
class: 'soc-4',
href: 'https://plus.google.com/103030720036135400511/about',
},
{
name: 'Twitter',
class: 'soc-5',
href: 'https://twitter.com/keen_ethics',
},
{
name: 'Upwork',
class: 'soc-6',
href: 'https://www.upwork.com/o/companies/~0106b5437592391f94/',
},
],
};
export const servicesWebDevelopmentTabs = () => {
const elements = [
{
href: '/services-web-development-e-commerce',
name: 'E-Commerce',
metaTitle: 'eCommerce Software Development Company | eCommerce Developers - Keenethics',
description: 'Building amazing e-commerce products',
icon: 'icon-e',
},
{
href: '/services-web-development-chatbot',
name: 'Chat Bots',
metaTitle: 'Chatbot Development Company | Microsoft Bot Framework Development - Keenethics',
description: 'Talking to AI was never that easy',
icon: 'icon-chat-bots',
},
{
href: '/services-web-development-node',
name: 'Website Node JS',
metaTitle: 'Node.Js Development Company | Node.js Website Development - Keenethics',
description: 'Leading and rule-breaking technology',
icon: 'icon-node',
},
{
href: '/services-web-development-meteor',
name: 'Meteor.js',
metaTitle: 'Meteor JS Development Company - Keenethics',
description: 'An ambitious fullstack-framework',
icon: 'icon-meteor',
},
{
href: '/services-web-development-programmable-voice',
name: 'Programmable Voice',
metaTitle: 'Programmable Voice Development - Keenethics',
description: 'When computer can replace a human',
icon: 'icon-voice',
},
];
return elements.map(e => ({
...e,
metaDescription: maskDescription(e.name),
}));
};
export const servicesMobileDevelopment = () => {
const elements = [
{
href: '/services-mobile-development-apple',
name: 'iOS development',
name2: 'iOS',
metaTitle: 'iOS Development Company | App Design & Development - Keenethics',
tabsDescription: '14 apps developed',
description: 'Mobile applications for popular platform',
icon: 'icon-apple',
},
{
href: '/services-mobile-development-android',
name: 'Android development',
name2: 'Android',
metaTitle: 'Android App Development Company - Keenethics',
tabsDescription: '23 apps developed',
description: 'Most popular Linux-based mobile OS',
icon: 'icon-android',
},
];
return elements.map(e => ({
...e,
metaDescription: maskDescription(e.name2),
}));
};
export const servicesOutstaffing = () => {
const elements = [
{
href: '/services-outstaffing-senior',
name: 'Senior developer',
name2: 'Senior',
metaTitle: 'Outstaffing company that helps to find highly qualified Senior developers - Keenethics',
tabsDescription: '4 in our team',
description: 'Best skills and expertise',
icon: 'icon-o-1',
},
{
href: '/services-outstaffing-team',
name: 'Dedicated team',
name2: 'Dedicated team',
metaTitle: 'Dedicated Team Of Developers. Offshore Outsourcing Software Development - Keenethics',
tabsDescription: '4-8 people',
description: 'Great developers who already have multiple projects behind',
icon: 'icon-o-2',
},
{
href: '/services-outstaffing-technical-consultancy',
name: 'Technical consultancy',
name2: 'Technical consultancy',
metaTitle: 'Technical consulting | Technical consultancy - Keenethics',
tabsDescription: '24 hours for an answer',
description: '24 hours for an answer',
icon: 'icon-o-3',
},
];
return elements.map(e => ({
...e,
metaDescription: maskDescription(e.name2),
}));
};
export const techApps = () => {
const elements = [
{
href: '/tech-apps-phonegap',
name: 'PhoneGap',
description:
'Framework for building mobile applications reusing existing codebase',
icon: 'icon-pg',
},
{
href: '/tech-apps-electron',
name: 'Electron',
description: 'JS-application on your desktop',
icon: 'icon-en',
},
{
href: '/tech-apps-accelerated-mobile-pages',
name: 'Accelerated Mobile Pages',
description: 'High speed for content loading and great Google-ranking',
icon: 'icon-acc',
},
{
href: '/tech-apps-progressive-web-apps',
name: 'Progressive Web Apps',
description: 'Working with web-applications offline',
icon: 'icon-prog',
},
{
href: '/tech-apps-react-native',
name: 'React Native',
description: 'Using native mobile UI-elements with crossplatform JS-code',
icon: 'icon-rn',
},
{
href: '/tech-apps-cordova',
name: 'Cordova',
description:
'Open-source framework for cross-platform mobile applications',
icon: 'icon-cv',
},
];
return elements.map(e => ({
...e,
metaTitle: maskTitle(e.name),
metaDescription: maskDescription(e.name),
}));
};
export const techFrontEnd = () => {
const elements = [
{
href: '/tech-front-end-react',
name: 'React',
description: 'Library for blazing-fast UI-rendering va virtual-DOM',
icon: 'icon-rn',
},
{
href: '/tech-front-end-redux',
name: 'Redux',
description: 'Organizing state in React-applciation',
icon: 'icon-redux',
},
{
href: '/tech-front-end-angular',
name: 'Angular',
description: 'Google-backed frontend-framework',
icon: 'icon-ang',
},
{
href: '/tech-front-end-aurelia',
name: 'Aurelia',
description:
'Ambitious Angular-competitor by one of former Angular-deveopers',
icon: 'icon-aurelia',
},
{
href: '/tech-front-end-react-native',
name: 'React Native',
description:
'Speeding up hybrid mobile-apps by using native mobile UI-elements',
icon: 'icon-rn',
},
{
href: '/tech-front-end-angular-2',
name: 'Angular 2.0',
description: 'Next-generation frontend-framework',
icon: 'icon-ang',
},
{
href: '/tech-front-end-vue',
name: 'Vue JS',
description: 'Popular lightweight library for UI',
icon: 'icon-vue',
},
{
href: '/tech-front-end-next',
name: 'Next JS',
description:
'Fullstack framework aiming simplicity combined with powerful features',
icon: 'icon-next',
},
];
return elements.map(e => ({
...e,
metaTitle: maskTitle(e.name),
metaDescription: maskDescription(e.name),
}));
};
export const techBackEnd = () => {
const elements = [
{
href: '/tech-back-end-express',
name: 'Express',
description: 'Most popular backend framework on top of node.js',
icon: 'icon-ex',
},
{
href: '/tech-back-end-meteor',
name: 'Meteor',
description: 'Fullstack real-time framework',
icon: 'icon-meteor_',
},
{
href: '/tech-back-end-hapi',
name: 'HAPI',
description: 'node.js-based backend framework',
icon: 'icon-hapi',
},
];
return elements.map(e => ({
...e,
metaTitle: maskTitle(e.name),
metaDescription: maskDescription(e.name),
}));
};
export const techDatabase = () => {
const elements = [
{
href: '/tech-data-base-mongo',
name: 'Mongo',
description: 'Fast noSQL database',
icon: 'icon-mongo',
},
{
href: '/tech-data-base-mysql',
name: 'MySQL',
description: 'Most popular SQL-database',
icon: 'icon-mysql',
},
{
href: '/tech-data-base-postgresql',
name: 'PostgreSQL',
description: 'SQL-database with advanced features',
icon: 'icon-post',
},
];
return elements.map(e => ({
...e,
metaTitle: maskTitle(e.name),
metaDescription: maskDescription(e.name),
}));
};
export const techApiIntegration = () => {
const elements = [
{
href: '/tech-api-integration-rest',
name: 'REST',
description: 'Organizing your backend endpoints',
icon: 'icon-rest',
},
{
href: '/tech-api-integration-paypal',
name: 'PayPal',
description: 'Sending and receiving money online',
icon: 'icon-paypal',
},
{
href: '/tech-api-integration-graphql',
name: 'GraphQL',
description: 'Smart organizing of dataflow between frontend and backend',
icon: 'icon-grap',
},
{
href: '/tech-api-integration-braintree',
name: 'Braintree',
description:
'Solution for accepting, splitting andprocessing payments online',
icon: 'icon-brain',
},
{
href: '/tech-api-integration-elastic-search',
name: 'Elastic Search',
description: 'Popular search-engine',
icon: 'icon-el',
},
{
href: '/tech-api-integration-stripe',
name: 'Stripe',
description: 'Developer-friendly payments service',
icon: 'icon-stripe',
},
];
return elements.map(e => ({
...e,
metaTitle: maskTitle(e.name),
metaDescription: maskDescription(e.name),
}));
};
export const spaceships = {
astronaut: {
capacity: 2,
},
midshipman: {
capacity: 3,
},
capt_lieutenant: {
capacity: 3,
},
corvette_captain: {
capacity: 3,
},
frigate_captain: {
capacity: 4,
},
spaceship: {
capacity: 1,
},
};
export const superteam = [
{
name: 'Oleksiy P.',
position: 'Chief of Meteor Flight Research Center',
description:
'He has spent the third-longest time in Meteor.js space of any person. He supervises research and development of Meteor flights.',
avatar: 'alex_p.jpg',
},
{
name: 'Max S.',
position: 'Chief of The Astronaut Office',
description:
'His responsibilities are coordination, scheduling, and control of all Keenethics astronauts activities.',
avatar: 'maks_s.jpg',
},
{
name: 'Alexey H.',
position: 'International Mission Specialist',
description:
'Intergalactic diplomat who speaks several alien languages. He is in constant search of new life forms outside our galaxy in order to establish contact and exchange resources.',
avatar: 'alex_h.jpg',
},
{
name: 'Viktoria M.',
position: 'Astronaut Interaction Specialist',
description:
'Victoria keeps track of all the movement between the missions, helps new Astronauts adopt and remain in shape over the course of their journey on our ship.',
avatar: 'viktoria_m.jpg',
},
/*{
name: 'Sofia I.',
position: 'Steward',
description:
'She has necessary organizational skills and she is good in orbital and interplanetary communication. She can even talk with creatures from outer space.',
avatar: 'sofia_i.jpg',
},*/
{
name: 'Alexandr S.',
position: 'Mission Support Officer',
description:
'Knows the structure of the ship by heart. He has a unique feeling that helps him find breakages and ensure astronauts safety.',
avatar: 'sasha_s.jpg',
},
];
export const team = [
{
position: 'Missions control',
key: 'spaceship',
people: [
{
name: 'Oleksiy P.',
position: 'Chief of Meteor Flight Research Center',
description: 'He has spent the third-longest time in Meteor.js space of any person. He supervises research and development of Meteor flights.',
avatar: 'alex_p.jpg',
},
{
name: 'Max S.',
position: 'Chief of The Astronaut Office',
description: 'His responsibilities are coordination, scheduling, and control of all Keenethics astronauts activities.',
avatar: 'maks_s.jpg',
},
{
name: 'Viktoria M.',
position: 'Astronaut Interaction Specialist',
description: 'Victoria keeps track of all the movement between the missions, helps new Astronauts adopt and remain in shape over the course of their journey on our ship.',
avatar: 'viktoria_m.jpg',
},
{
name: 'Alexandr S.',
position: 'Mission Support Officer',
description: 'Knows the structure of the ship by heart. He has a unique feeling that helps him find breakages and ensure astronauts safety.',
avatar: 'sasha_s.jpg',
},
{
name: 'Ihor F.',
position: 'Recruitment&Brand Mission Specialist',
description: 'Knows no boundaries, he will find anyone anywhere. Don’t even try to hide from him.',
avatar: 'ihor_f.jpg',
},
{
name: 'Oksana P.',
position: 'Space Pixel Commander',
description: 'Can turn a few words or a code line into something beautiful.',
avatar: 'oksana_p.jpg',
},
{
name: 'Liuba S.',
position: 'Spaceflight Mission Specialist',
description: 'Discipline is her forte, she is the most punctual astronaut.',
avatar: 'liuba_s.jpg',
},
{
name: 'Artem S.',
position: 'Mission Support Officer',
description: '',
avatar: 'artem_s.jpg',
},
{
name: 'Ulyana L.',
position: 'Space Talants Searcher',
description: '',
avatar: 'ulyana_l.jpg',
},
{
name: 'Anna D.',
position: 'Spaceflight Mission Specialist',
description: '',
avatar: 'anna_d.jpg',
},
{
name: 'Tamara A.',
position: 'Space Office Manager',
description: '',
avatar: 'tamara_a.jpg',
},
],
},
{
position: 'Frigate captain',
key: 'frigate_captain',
people: [
{
name: 'Vlad O.',
position: 'Full-stack js Frigate Captain',
description:
'Has a medal "For Merit in Space Exploration" for achievements in outer space researching, development and reconnaissance.',
avatar: 'vlad_o.jpg',
},
{
name: 'Sergey G.',
position: 'Full-stack js Frigate captain',
description:
'A Strong pilot with cool UX and UI feeling and game development background. Leads gamification at Keenethics flagship.',
avatar: 'sergei_g.jpg',
},
],
},
{
position: 'Corvette capt',
key: 'corvette_captain',
people: [
{
name: 'Yara M.',
position: 'Full-stack js Corvette Capt',
description:
'She is the first woman to have flown in Keenethics space, having been selected from more than five finalists to pilot Keen project applicants.',
avatar: 'yara_m.jpg',
},
{
name: 'Mykhailo O.',
position: 'Full-stack js Corvette Capt',
description:
'Space Meteor.js Developer who has logged around 700 hours of moonwalk time on Upwork over five successful Meteor Shuttle missions.',
avatar: 'michael_rich.jpg',
},
{
name: 'Taras Y.',
position: 'Full-stack js Corvette Capt',
description:
'Was chosen from a final pool of 13 candidates to fly on Reaction Commerce first manned space mission.',
avatar: 'taras_y.jpg',
},
{
name: 'Serhiy S.',
position: 'Full-stack js Corvette Capt ',
description:
'Super friendly, quiet and hard-working astronaut.',
avatar: 'serhii_s.jpg',
},
{
name: 'Yanul M.',
position: 'Full-stack js Corvette Capt',
description:
'Space hot fire-show amateur, got an honors diploma in the flight school, acts as a hot second pilot in the hot shuttle mission.',
avatar: 'maryna_y.png',
},
{
name: 'Andrij T.',
position: 'Full-stack js Corvette Capt',
description:
'Ph. D, he has firm and scientific approach to problem-solving and he used to be a pilot on several shuttle missions.',
avatar: 'andrew_t.jpg',
},
{
name: 'Max F.',
position: 'Full-stack js Corvette Capt',
description:
'Space gamer. He is also one of the pilots who flies on one of the biggest Meteor Shuttle mission in the world.',
avatar: 'maksym_f.jpg',
},
{
name: 'Mykhailo F.',
position: 'Full-stack js Corvette Capt',
description:
'Has space banking background and is good at front-end and mobile fields.',
avatar: 'misha_f.jpg',
},
{
name: 'Arsen T.',
position: 'Full-stack js Corvette Capt',
description:
'Space sweet Karmaman astronaut. He knows how to keep your Karma clean.',
avatar: 'arsen_t.jpg',
},
{
name: 'Golomb Y.',
position: 'Full-stack js Corvette Capt',
description:
'Participated in large battles as a Rookie and dreams about leading his own squad',
avatar: 'ura_g.jpg',
},
],
},
{
position: 'Capt-lieutenant',
key: 'capt_lieutenant',
people: [
{
name: 'Ihor V.',
position: 'Full-stack js Capt-lieutenant',
description:
'The youngest midshipman from outer space. Cool and steady even when approaching black hole.',
avatar: 'igor_v.jpg',
},
{
name: 'Yuriy S.',
position: 'Full-stack js Capt-lieutenant',
description:
'Was able to capture new alien ship on his first flight. Due to excellent communicative skills, first comes into contact with unknown galactic creatures.',
avatar: 'yurii_s.jpg',
},
{
name: 'Volodymyr A.',
position: 'Full-stack js Capt-lieutenant',
description:
'He was able to transform his shuttle into cluster of micro-ships that are able to self-repair. This cluster is the most resilient fleet in the world.',
avatar: 'volodiy_a.jpg',
},
{
name: 'Taras P.',
position: 'Full-stack js Capt-lieutenant',
description:
'He has a diligent approach to every task. He is patient having long commutes to the station every day. Fond of remote missions in deep space.',
avatar: 'taras_p.jpg',
},
{
name: 'Rostyslav T.',
position: 'Full-stack js Capt-lieutenant',
description:
'Was create AI-bots powered space craft. You may never be sure whether you are talking to him, or to his AI.',
avatar: 'rostyk_t.jpg',
},
{
name: 'Vlad E.',
position: 'Full-stack js Capt-lieutenant',
description:
'Literally knows what «with fire and sword» means.',
avatar: 'vlad_e.jpg',
},
],
},
{
position: 'Midshipman',
key: 'midshipman',
people: [
],
},
{
position: 'Astronaut',
key: 'astronaut',
people: [
{
name: 'Taras K.',
position: 'Full-stack js Astronaut',
description:'',
avatar: 'taras_k.jpg',
},
{
name: 'Oleh K.',
position: 'Full-stack js Astronaut',
description:'',
avatar: 'oleh_k.jpg',
},
{
name: 'Max S.',