-
Notifications
You must be signed in to change notification settings - Fork 0
/
consts.js
87 lines (86 loc) · 1.99 KB
/
consts.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
// Do not modify , file linked with Airtable
const teams = {
vue: "VueJS",
python: "Python",
js: "JavaScript",
node: "NodeJS",
react: "React",
ruby: "Ruby",
angular: "Angular",
aws: "AWS",
fcc: "Free Code Camp",
git: "Git",
flutter: "Flutter",
csharp: "CSharp",
swift: "Swift",
php: "PHP",
eng: "English",
git: "Git",
}
const exp = {
novice: "Principiante/Entusiasta",
default: "1 - 2 Años de exp.",
pro: "Más de 2 años de exp.",
}
const timing = {
h1: "1 Hora por semana",
h2: "2 Horas por semana",
h3: "3 Horas por semana",
plus: "Más de 3 horas por semana",
}
const mentors = [
{
exp: exp.pro,
name: "Gerardo Lopéz",
teams: [teams.python, teams.aws],
timing: timing.plus,
discord: "glop97#0298",
twitter: "gerardev_",
image:
"https://cdn.discordapp.com/attachments/756482229009514507/756482745731121244/46210069_2008385289255990_3372877451507007488_o.jpg",
},
{
exp: exp.default,
name: "Sergio Bernal",
teams: [teams.python, teams.node, teams.js],
timing: timing.h3,
discord: "nhulox97",
twitter: "sergio_dosv",
image:
"https://cdn.discordapp.com/attachments/756482229009514507/756708191626330202/perfil.png",
},
{
exp: exp.pro,
name: "Mario Menjívar",
teams: [teams.react, teams.node, teams.js, teams.eng, teams.csharp],
timing: timing.h2,
discord: "mariomenjr",
twitter: "mariomenjr",
image:
"https://cdn.discordapp.com/attachments/756482229009514507/756482403266068480/86460255_2995952337105658_6291319162341949440_o.jpg",
},
{
exp: exp.pro,
name: "Juan Trejo",
teams: [
teams.vue,
teams.aws,
teams.eng,
teams.node,
teams.git,
teams.ruby,
teams.js,
],
timing: timing.plus,
discord: "Juan Trejo",
twitter: "_trejosv",
image:
"https://cdn.discordapp.com/attachments/756482229009514507/756482827247157310/2290322.jpeg",
},
]
module.exports = {
teams,
exp,
timing,
mentors,
}