-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
664 lines (624 loc) · 22 KB
/
App.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
import React, { Component } from 'react';
import Header from './Components/Header';
import EventInfo from './Components/EventInfo';
import Agenda from './Components/Agenda';
import Speakers from './Components/Speakers';
import Venue from './Components/Venue';
import Footer from './Components/Footer';
import moment from 'moment';
class App extends Component {
constructor(props) {
super(props);
this.state = {
now: moment().format('YYYY-MM-DD hh:mm:ss a'),
end: moment(this.props.event.endRsvp, 'YYYY-MM-DD hh:mm:ss a'),
eventDate: moment(this.props.event.date, 'YYYY-MM-DD hh:mm:ss a').format('LL'),
time: moment(this.props.event.date, 'YYYY-MM-DD hh:mm:ss a').format('LT'),
rsvp: null
}
}
componentWillMount(){
if(this.state.now > this.state.end._i) {
this.setState({ rsvp: false})
} else {
this.setState({ rsvp: true})
}
}
render() {
const { landing, event, agenda, speakers } = this.props;
return (
<div className='main'>
<Header landing={landing}
eventDate={this.state.eventDate}
time={this.state.time}
rsvp={this.state.rsvp}
event={event}
/>
<EventInfo event={event} />
<Agenda agenda={agenda} />
<Speakers speakers={speakers} />
<Venue event={event}
eventDate={this.state.eventDate}
time={this.state.time}
rsvp={this.state.rsvp}
/>
<Footer email={landing.email} name={landing.circleName} />
</div>
);
}
};
App.defaultProps = {
landing: {
circleName: 'Facebook Developer Circles Stream Fest',
logo: 'https://s3.amazonaws.com/chewiekie/img/logo-guadalajara.png',
background: 'https://s3.amazonaws.com/chewiekie/img/devc-bg.png',
groupUrl: 'https://www.facebook.com/groups/DevCBogota/',
email: '[email protected]'
},
event: {
title: 'DevC Stream Fest 2019',
description: 'Acompáñanos al Primer Festival de Streaming de los Facebook Developers Circles en América latina.',
whatIs: 'Developer Circles de Facebook es un programa diseñado para crear comunidades de desarrolladores organizadas localmente. El fin de estas comunidades es informar y proporcionar un foro para conversar y compartir conocimientos sobre los temas de mayor prioridad para los desarrolladores en un mercado concreto.',
venue: {
name: 'Festival Online',
address: 'LATAM',
lat: 20.6751803,
lng: -103.3927516
},
date: '2019-12-10 07:00:00 pm',
endRsvp: '2019-12-18 04:00:00 pm',
buttonText: '¡Participar!',
messageRsvp: 'Por el momento no es posible registrar más lugares para el evento, nuestro cupo máximo ha sido alcanzado.',
mailChimpEvent: '//facebook.us16.list-manage.com/subscribe/post?u=b7544c7f63148ada4e7f5893b&id=7037202809'
},
agenda: [
{time: '7:00PM ', activity: 'Registro', attend: 'DEVC LATAM'},
{time: '7:30PM', activity: 'Bienvenida', attend: 'DEVC LATAM'},
{time: '7:40PM', activity: 'Tema1', attend: 'Oscar Barajas'},
{time: '8:20PM', activity: 'Tema2', attend: 'Piero Divasto'},
{time: '9:00PM', activity: 'Tema3', attend: 'Leo Camacho'},
],
speakers: [
{
name: 'Oscar Barajas',
photo: '<URL_IMG>',
bio: 'Oscar Barajas Bio',
jobTitle: 'Foundation Layer & Frontend Developer @Platzi',
conferenceTitle: 'React y un mundo de posibilidades',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'twitter.com/gndx'},
{name: 'instagram', url: 'instagram.com/gndx'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Rihan Topete',
photo: '<URL_IMG>',
bio: 'Rihan Topete Bio',
jobTitle: 'Community Lead',
conferenceTitle: 'El impacto de las comunidades de Desarrollo',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://www.facebook.com/rihantopete'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Ana B Martínez',
photo: '<URL_IMG>',
bio: 'Ana B Martínez Bio',
jobTitle: 'Community Lead',
conferenceTitle: 'Girls in Tech ',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://www.facebook.com/anabelisam'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Lesly Zerna',
photo: '<URL_IMG>',
bio: 'Lesly Zerna Bio',
jobTitle: 'Google Developer Expert',
conferenceTitle: 'Creando una Red Neuronal con PyTorch',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://www.facebook.com/leslysandra'},
{name: 'medium', url: 'https://medium.com/@leslysandra'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Hajer Mahjoub',
photo: '<URL_IMG>',
bio: 'Hajer Mahjoub Bio',
jobTitle: 'Ai engineer',
conferenceTitle: 'Google assistant action ',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://www.facebook.com/HajerMahjoub.it'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Piero Divasto',
photo: '<URL_IMG>',
bio: 'Piero Divasto Bio',
jobTitle: 'Lead consultant y developer',
conferenceTitle: 'Front-end development + Javascript ',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: '@morph3o'},
{name: 'instagram', url: 'morph3o'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Julia M',
photo: '<URL_IMG>',
bio: 'Julia M Bio',
jobTitle: 'Software Developer',
conferenceTitle: 'Mujeres en Ciberseguridad ',
description: 'Complete bio or description',
social: [
{name: 'linkedin', url: 'https://www.linkedin.com/in/juliaurbinapineda/'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Leo Camacho',
photo: '<URL_IMG>',
bio: 'Leo Camacho Bio',
jobTitle: 'Desarrollador de Asistentes Virtuales',
conferenceTitle: 'Asistentes Virtuales & WhatsApp for Business ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/leo.aiassistant'},
{name: 'medium', url: 'https://medium.com/@BuildActions'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Madeline Scarlett',
photo: '<URL_IMG>',
bio: 'Madeline Scarlett Bio',
jobTitle: 'Estudiante Ingenieria',
conferenceTitle: 'Mujeres en ingeniería y carreras tecnólogicas. ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/madlivie'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Camilo Montanez',
photo: '<URL_IMG>',
bio: 'Camilo Montanez Bio',
jobTitle: 'Business Development',
conferenceTitle: 'Tecnologias Inmersivas (VR/AR/IA) ',
description: 'Complete bio or description',
social: [
{name: 'blog', url: 'www.about.me/camilomoal'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Eugenia Rodriguez',
photo: '<URL_IMG>',
bio: 'Eugenia Rodriguez Bio',
jobTitle: 'Neuro Branding',
conferenceTitle: 'Integración del retail tradicional a lo digital.',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Omar Tzompantzi Coyotzi',
photo: '<URL_IMG>',
bio: 'Omar Tzompantzi Bio',
jobTitle: 'Cloud architecture',
conferenceTitle: 'Cloud native',
description: 'Complete bio or description',
social: [
{name: 'instagram', url: 'Instagram: omar_tzco'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Paula Brenes',
photo: '<URL_IMG>',
bio: 'Paula Brenes Bio',
jobTitle: 'Directora',
conferenceTitle: 'Ciencia ficción para la innovación. ',
description: 'Complete bio or description',
social: [
{name: 'linkedin', url: 'http://linkedin.com/in/paulafbrenesr'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Manuel de Jesús Véliz',
photo: '<URL_IMG>',
bio: 'Manuel de Jesús Véliz Bio',
jobTitle: 'Director de informática',
conferenceTitle: 'Wordpress + AndroidStudio + Firebase',
description: 'Complete bio or description',
social: [
{name: 'linkedin', url: 'http://linkedin.com/in/manuel-de-jesús-veliz-nájera-4b2338a5'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Jennifer Lopez',
photo: '<URL_IMG>',
bio: 'Jennife Lopez Bio',
jobTitle: 'Product owner',
conferenceTitle: 'Blockchain ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: '@jenniferLopez '},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'José Jesús Guzmán Eusebio',
photo: '<URL_IMG>',
bio: 'José Jesús Guzmán Bio',
jobTitle: 'Director en tecnología de identidad y biodiversidad',
conferenceTitle: 'Emprendimiento tecnológico',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/josejesus8'},
{name: 'linkedin', url: ' https://www.linkedin.com/in/jesus-guzman '}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Maria Rene Torrez Vargas',
photo: '<URL_IMG>',
bio: 'Maria Rene Torrez Bio',
jobTitle: 'Profesora de Tecnologia de niños y jovenes',
conferenceTitle: 'Google Apps Script API for Education',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: '@solorene'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'German Reynaga Araiza',
photo: '<URL_IMG>',
bio: 'German Reynaga Bio',
jobTitle: 'Software Engineer',
conferenceTitle: 'TDD, arquitectura de software, micro servicios',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://m.facebook.com/german.reynagaaraiza'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Jessica Azcona',
photo: '<URL_IMG>',
bio: 'Jessica Azcona Bio',
jobTitle: 'Ingeniería en Tecnologías Computacionales',
conferenceTitle: 'Empoderando a mujeres en tecnología',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/jessi.azc.9'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Pablo Roberto Gonzalez',
photo: '<URL_IMG>',
bio: 'Pablo Gonzalez Bio',
jobTitle: 'Docente universitario',
conferenceTitle: 'Arduino + Power BI',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/'},
{name: 'linkedin', url: 'https://www.linkedin.com/in/pablogonz'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Ximena Cruz',
photo: '<URL_IMG>',
bio: 'Ximena Cruz Bio',
jobTitle: 'Project Manangment | Community Lead',
conferenceTitle: 'Planea Realidades, No fantasías (Metolodgías Ágiles + SCRUM).',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: '@helenismo.reset23'},
{name: 'twitter', url: '@HelenismoDotNet '}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Magdaleno',
photo: '<URL_IMG>',
bio: 'Magdaleno Bio',
jobTitle: 'Software Developer',
conferenceTitle: 'DevOps',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/magdaleno.ga'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Irene Velasco',
photo: '<URL_IMG>',
bio: 'Irene Velasco Bio',
jobTitle: 'Emprendedora',
conferenceTitle: 'El propósito como el origen del todo. ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/1r3n3'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Luis Enrique Pinedo',
photo: '<URL_IMG>',
bio: 'Luis Enrique Pinedo Bio',
jobTitle: 'Marketing digital y desarrollo',
conferenceTitle: 'Flutter',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'www.facebook.com/jumpercusco'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Fernando Quinteros Gutierrez',
photo: '<URL_IMG>',
bio: 'Fernando Quinteros Bio',
jobTitle: 'Web Freelance',
conferenceTitle: 'React Hooks ',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/ferkki2'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Jose Rojas',
photo: '<URL_IMG>',
bio: 'Jose Rojas Bio',
jobTitle: 'Developer frond-end',
conferenceTitle: 'tecnologias frond-end para la experienncias de usuario ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/j.elias1996'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Martin Melo Godínez',
photo: '<URL_IMG>',
bio: 'Martin Melo Bio',
jobTitle: 'Fullstack Software Developer',
conferenceTitle: 'Django o Firebase (tecnologías) autoeducación en el mundo del software ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/martin.melo.godinez'},
{name: 'twitter', url: 'https://twitter.com/martinmelo'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Pablo Baeza',
photo: '<URL_IMG>',
bio: 'Pablo Baeza Bio',
jobTitle: 'Dev, arquitectura y operaciones',
conferenceTitle: 'Cloud Native',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'twitter.com/pbaeza'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Erifranck Nuñez',
photo: '<URL_IMG>',
bio: 'Erifranck Nuñez Bio',
jobTitle: 'Desarrrollador Frontend',
conferenceTitle: 'Aplicando Atomic Design con react.',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/@erifranckn'},
{name: 'instagram', url: 'https://www.instagram.com/erifranck/'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Mauricio Flores Hernández',
photo: '<URL_IMG>',
bio: 'Mauricio Flores Bio',
jobTitle: 'Desarrollador de software y estudiante.',
conferenceTitle: 'Actions on Google',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/Mau_Hernandez_F?s=08'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Freddy Santacruz',
photo: '<URL_IMG>',
bio: 'Freddy Santacruz Bio',
jobTitle: 'Desarrollador de Software ',
conferenceTitle: 'Uso de pentaho data integration ',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/santacruz.edison'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Eduardo Velez Santiago',
photo: '<URL_IMG>',
bio: 'Eduardo Velez Bio',
jobTitle: 'Desarrollo de software',
conferenceTitle: 'Como usamos React en terapify, desde hacer Server Side Rendering hasta mobile.',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/evsdD'},
{name: 'linkedin', url: 'www.linkedin.com/in/eddvelezs'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Alvaro Martinez Mancilla',
photo: '<URL_IMG>',
bio: 'Alvaro Martinez Bio',
jobTitle: 'Desarrollador móvil & Co-founder AuraSoft',
conferenceTitle: 'Diseño y desarrollo de aplicaciones con flutter',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/Alvardud'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Max Uribe',
photo: '<URL_IMG>',
bio: 'Max Uribe Bio',
jobTitle: 'Software Engineer',
conferenceTitle: 'Comandos de GNU Linux',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'facebook.com/maxuribealonso'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Javier DN',
photo: '<URL_IMG>',
bio: 'Javier DN Bio',
jobTitle: 'Desarrollador Software',
conferenceTitle: 'Google Smart Home Actions',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: '@whereisjavier'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Rodrigo Quezada',
photo: '<URL_IMG>',
bio: 'Rodrigo Quezada Bio',
jobTitle: 'Software Engineer',
conferenceTitle: 'Terraform + React',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/rodikana'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Marlon Israel Nuño Rodríguez',
photo: '<URL_IMG>',
bio: 'Marlon Israel Nuño Bio',
jobTitle: 'Software Engineer & Emprendedor Social',
conferenceTitle: 'Design Thinking, emprendimiento, Inteligencia Artificial en el Derecho',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://www.facebook.com/cornamentaNuno'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Mikee Ramirez',
photo: '<URL_IMG>',
bio: 'Mikee Ramirez Bio',
jobTitle: 'Head of engineering in Nowports',
conferenceTitle: 'Como trabajar en una startup y sobrevir en el intento',
description: 'Complete bio or description',
social: [
{name: 'instagram', url: 'https://www.instagram.com/mikeermz'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Guilherme Fernandes Neto',
photo: '<URL_IMG>',
bio: 'Guilherme Fernandes Neto Bio',
jobTitle: 'Programacao e robotica',
conferenceTitle: 'A.I ',
description: 'Complete bio or description',
social: [
{name: 'linkedin', url: 'https://www.linkedin.com/in/guilherme-fernandes-neto-90b852147'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Edwin Alberto Castañeda García',
photo: '<URL_IMG>',
bio: 'Edwin Alberto Castañeda García Bio',
jobTitle: 'Emprendedor & Programador',
conferenceTitle: 'Taller de Introducción a Raspberry Pi: sensor y LED',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'facebook.com/computaccion'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Esteban Dalel R',
photo: '<URL_IMG>',
bio: 'Esteban Dalel R Bio',
jobTitle: 'Developer',
conferenceTitle: 'NextJS: haciendo React más fácil',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/estebandalelr'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Ivan Medina',
photo: '<URL_IMG>',
bio: 'Ivan Medina Bio',
jobTitle: 'Software Engineer',
conferenceTitle: 'React + Testing + JavaScript + GraphQL',
description: 'Complete bio or description',
social: [
{name: 'twitter', url: 'https://twitter.com/ivandevp'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Alfredo Gallardo',
photo: '<URL_IMG>',
bio: 'Alfredo Gallardo Bio',
jobTitle: 'Desarrollo de videojuegos, VR, AR.',
conferenceTitle: 'Videojuegos en Unreal Engineer',
description: 'Complete bio or description',
social: [
{name: 'facebook', url: 'https://facebook.com/fockagames/?locale2=es_LA'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Marcelo Adriano Barbosa Junior',
photo: '<URL_IMG>',
bio: 'Marcelo Adriano Barbosa Bio',
jobTitle: 'Tech Lead Mobile',
conferenceTitle: 'Desarrollo móvil asequible: creación de aplicaciones para personas con discapacidad visual.',
description: 'Complete bio or description',
social: [
{name: 'linkedin', url: 'https://br.linkedin.com/in/mabarbosajr'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
},
{
name: 'Santiago Garcia da Rosa',
photo: '<URL_IMG>',
bio: 'Santiago Garcia da Rosa Bio',
jobTitle: 'CTO at Nowports',
conferenceTitle: 'Clean Code in JS (buenas practicas de programacion)',
description: 'Complete bio or description',
social: [
{name: 'medium', url: 'https://medium.com/@santiagogarcadarosa'},
{name: 'linkedin', url: 'https://www.linkedin.com/in//'}
], // Accept any Social Network in FontAwesome Icons
}
]
};
export default App;