-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
619 lines (578 loc) · 30.3 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<script defer data-domain="barcelonajs.com" src="https://plausible.io/js/plausible.js"></script>
<title>BarcelonaJS</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="BarcelonaJS" />
<meta name="keywords" content="barcelona, js, javascript, meetup, non-profit" />
<meta name="description" content="BarcelonaJS is a monthly event for JavaScript developers, geeks and techies." />
<meta property="og:site_name" content="BarcelonaJS" />
<meta property="og:title" content="BarcelonaJS" />
<meta property=og:url content=http://barcelonajs.com>
<meta property="og:type" content="website" />
<meta property="og:description"
content="BarcelonaJS is a monthly event for JavaScript developers, geeks and techies." />
<meta property="og:image" content="/logo.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@bcnjs" />
<meta name="twitter:title" content="BarcelonaJS" />
<meta name="twitter:description"
content="BarcelonaJS is a monthly event for JavaScript developers, geeks and techies." />
<meta name="twitter:image" content="/logo.png" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link href="/build.css" rel="stylesheet" />
</head>
<body>
<header class="bg-gray-100">
<nav class="mx-auto flex max-w-7xl items-center justify-between p-6 lg:px-8" aria-label="Global">
<div class="flex lg:flex-1">
<a href="#" class="-m-1.5 p-1.5">
<span class="sr-only">BarcelonaJS</span>
<img class="h-8 w-auto" src="logo.svg" />
</a>
</div>
<div class="flex lg:hidden">
<button id="toggleButtonOn" type="button"
class="-m-2.5 inline-flex items-center justify-center rounded-md p-2.5 text-gray-700">
<span class="sr-only">Open main menu</span>
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
</button>
</div>
<div class="hidden lg:flex lg:gap-x-12">
<a href="#values" class="text-sm font-semibold leading-6 text-gray-900">Values</a>
<a href="#collaborate" class="text-sm font-semibold leading-6 text-gray-900">Collaborate</a>
<a href="#organizers" class="text-sm font-semibold leading-6 text-gray-900">Organizers</a>
<a href="#partners" class="text-sm font-semibold leading-6 text-gray-900">Partners</a>
</div>
<div class="hidden lg:flex lg:flex-1 lg:justify-end">
<a href="https://www.meetup.com/barcelonajs/"
class=" block px-4 py-2 border border-transparent text-center text-base font-medium rounded-md text-red-700 bg-red-100 hover:bg-red-200">Join
next meetup</a>
</div>
</nav>
<!-- Mobile menu, show/hide based on menu open state. -->
<div id="flyoutMenu" class="hidden" role="dialog" aria-modal="true">
<!-- Background backdrop, show/hide based on slide-over state. -->
<div class="fixed inset-0 z-20"></div>
<div
class="fixed inset-y-0 right-0 z-20 w-full overflow-y-auto bg-white px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-gray-900/10">
<div class="flex items-center justify-between">
<a href="#" class="-m-1.5 p-1.5">
<span class="sr-only">BarcelonaJS</span>
<img class="h-8 w-auto" src="logo.svg" alt="">
</a>
<button id="toggleButtonOff" class="-m-2.5 rounded-md p-2.5 text-gray-700">
<span class="sr-only">Close menu</span>
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="mt-6 flow-root">
<div class="-my-6 divide-y divide-gray-500/10">
<div class="space-y-2 py-6">
<a href="#values"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50 mobile-menu-item">Values</a>
<a href="#collaborate"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50 mobile-menu-item">Collaborate</a>
<a href="#organizers"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50 mobile-menu-item">Organizers</a>
<a href="#partners"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50 mobile-menu-item">Partners</a>
</div>
<div class="py-6">
<a href="https://www.meetup.com/barcelonajs/"
class=" block px-4 py-2 border border-transparent text-center text-base font-medium rounded-md text-red-700 bg-red-100 hover:bg-red-200">Join
next meetup</a>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="relative bg-white overflow-hidden">
<div class="max-w-7xl mx-auto">
<div class="relative z-10 pb-8 bg-white sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32">
<!-- https://heroicons.com -->
<svg class="hidden lg:block absolute right-0 inset-y-0 h-full w-48 text-white transform translate-x-1/2"
fill="currentColor" viewBox="0 0 100 100" preserveAspectRatio="none" aria-hidden="true">
<polygon points="50,0 100,0 50,100 0,100" />
</svg>
<div class="relative pt-6 px-4 sm:px-6 lg:px-8">
<nav class="relative flex items-center justify-between sm:h-10 lg:justify-start" aria-label="Global">
<div class="flex items-center flex-grow flex-shrink-0 lg:flex-grow-0">
<div class="flex items-center justify-between w-full md:w-auto">
<!-- <img class="h-8 w-auto sm:h-10" src="logo.svg" /> -->
<div class="-mr-2 flex items-center md:hidden">
</div>
</div>
</div>
</nav>
</div>
<main class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28">
<div class="sm:text-center lg:text-left">
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
<span class="block xl:inline">Your JS community</span>
<span class="block text-red-600 xl:inline">in Barcelona</span>
</h1>
<p
class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
Join the largest javascript community in barcelona, we run meetup events every month. Free
tickets available to the community.
</p>
<div class="mt-5 sm:mt-8 mx-auto">
<div class="flex flex-row gap-8 md:gap-8 justify-center">
<a href="https://www.meetup.com/barcelonajs/" class="block w-12">
<img src="/media/social/meetup.svg" alt="meetup" class="">
</a>
<a href="https://x.com/bcnjs" class="block w-12">
<img src="/media/social/x.svg" alt="x" class="">
</a>
<a href="https://www.youtube.com/@BcnJS" class="block w-12">
<img src="/media/social/youtube.svg" alt="youtube" class="">
</a>
<a href="https://www.linkedin.com/company/barcelonajs/" class="block w-12">
<img src="/media/social/linkedin.svg" alt="youtube" class="">
</a>
</div>
</div>
</div>
</main>
</div>
</div>
<div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
<img class="h-56 w-full object-cover sm:h-72 md:h-96 lg:w-full lg:h-full"
src="bg.jpg?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80" alt="" />
</div>
</div>
<div id="values" class="py-12 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-red-600 font-semibold tracking-wide uppercase">
Community values
</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
A better way to share
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Join the community and enjoy sharing your learning journey, network with like minded people.
</p>
</div>
<div class="mt-10">
<dl class="space-y-10 md:space-y-0 md:grid md:grid-cols-3 md:gap-x-8 md:gap-y-10">
<div class="flex flex-col gap-4">
<div class="">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<!-- https://heroicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M18 18.72a9.094 9.094 0 003.741-.479 3 3 0 00-4.682-2.72m.94 3.198l.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0112 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 016 18.719m12 0a5.971 5.971 0 00-.941-3.197m0 0A5.995 5.995 0 0012 12.75a5.995 5.995 0 00-5.058 2.772m0 0a3 3 0 00-4.681 2.72 8.986 8.986 0 003.74.477m.94-3.197a5.971 5.971 0 00-.94 3.197M15 6.75a3 3 0 11-6 0 3 3 0 016 0zm6 3a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0zm-13.5 0a2.25 2.25 0 11-4.5 0 2.25 2.25 0 014.5 0z" />
</svg>
</div>
</div>
<div class="">
<dt class="text-lg leading-6 font-medium text-gray-900">
For Everyone
</dt>
<dd class="mt-2 text-base text-gray-500">
Coding is awesome and inclusive. Our events welcome everyone, and we expect all attendees to honor our
<a href="https://github.com/BarcelonaJS/organization/blob/main/code-of-conduct.md"
class="text-red-600">Code of Conduct</a>.
</dd>
</div>
</div>
<div class="flex flex-col gap-4">
<div class="">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<!-- https://heroicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M13.5 10.5V6.75a4.5 4.5 0 119 0v3.75M3.75 21.75h10.5a2.25 2.25 0 002.25-2.25v-6.75a2.25 2.25 0 00-2.25-2.25H3.75a2.25 2.25 0 00-2.25 2.25v6.75a2.25 2.25 0 002.25 2.25z" />
</svg>
</div>
</div>
<div class="">
<dt class="text-lg leading-6 font-medium text-gray-900">
Open source
</dt>
<dd class="mt-2 text-base text-gray-500">
Open source is our backbone. Our events, website, and software are open for everyone to contribute to.
</dd>
</div>
</div>
<div class="flex flex-col gap-4">
<div class="">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<!-- https://heroicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M20.893 13.393l-1.135-1.135a2.252 2.252 0 01-.421-.585l-1.08-2.16a.414.414 0 00-.663-.107.827.827 0 01-.812.21l-1.273-.363a.89.89 0 00-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.212.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 01-1.81 1.025 1.055 1.055 0 01-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.655-.261a2.25 2.25 0 01-1.383-2.46l.007-.042a2.25 2.25 0 01.29-.787l.09-.15a2.25 2.25 0 012.37-1.048l1.178.236a1.125 1.125 0 001.302-.795l.208-.73a1.125 1.125 0 00-.578-1.315l-.665-.332-.091.091a2.25 2.25 0 01-1.591.659h-.18c-.249 0-.487.1-.662.274a.931.931 0 01-1.458-1.137l1.411-2.353a2.25 2.25 0 00.286-.76m11.928 9.869A9 9 0 008.965 3.525m11.928 9.868A9 9 0 118.965 3.525" />
</svg>
</div>
</div>
<div class="">
<dt class="text-lg leading-6 font-medium text-gray-900">
Non Profit
</dt>
<dd class="mt-2 text-base text-gray-500">
We're non-profit and volunteer-run. All our events focus on community, not on making a profit.
</dd>
</div>
</div>
</dl>
</div>
</div>
</div>
<div id="collaborate" class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-red-600 font-semibold tracking-wide uppercase">
Collaborate
</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Help maintain the community
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Too keep this community we need attendants, speakers and sponsors.
</p>
</div>
<div class="mt-10">
<dl class="space-y-10 md:space-y-0 md:grid md:grid-cols-3 md:gap-x-8 md:gap-y-10">
<div class="flex flex-col gap-4">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<!-- https://heroicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3.75h.008v.008h-.008v-.008zm0 3h.008v.008h-.008v-.008zm0 3h.008v.008h-.008v-.008z" />
</svg>
</div>
</div>
<div class="">
<dt class="text-lg leading-6 font-medium text-gray-900">
Ask you company to Sponsor
</dt>
<dd class="mt-2 text-base text-gray-500">
If your company wants to support the community, we're always looking for event hosts. Interested?
</dd>
<div class="mt-4 flex flex-row items-center justify-start">
<a href="https://github.com/BarcelonaJS/event-sponsors/issues/new?assignees=&labels=&projects=BarcelonaJS%2F2&template=event-sponsor.yml"
class="block px-4 py-3 border text-center text-base font-large rounded-md text-red-600 border-red-600 hover:text-white hover:bg-red-600">Sponsor
the event</a>
</div>
</div>
</div>
<div class="flex flex-col gap-4">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<!-- https://heroicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.34 15.84c-.688-.06-1.386-.09-2.09-.09H7.5a4.5 4.5 0 110-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 01-1.44-4.282m3.102.069a18.03 18.03 0 01-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 018.835 2.535M10.34 6.66a23.847 23.847 0 008.835-2.535m0 0A23.74 23.74 0 0018.795 3m.38 1.125a23.91 23.91 0 011.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 001.014-5.395m0-3.46c.495.413.811 1.035.811 1.73 0 .695-.316 1.317-.811 1.73m0-3.46a24.347 24.347 0 010 3.46" />
</svg>
</div>
</div>
<div class="">
<dt class="text-lg leading-6 font-medium text-gray-900">
Share your experience
</dt>
<dd class="mt-2 text-base text-gray-500">
Faced challenges or had fun wins in tech? Share your stories at BcnJS. Want to present?
</dd>
<div class="mt-4 flex flex-row items-center justify-start">
<a href="https://github.com/BarcelonaJS/talks/issues/new?assignees=&labels=Pending%3A+ready+for+review&projects=BarcelonaJS%2F2&template=new-talk.yml"
class="block px-4 py-3 border text-center text-base font-large rounded-md text-red-600 border-red-600 hover:text-white hover:bg-red-600">Become
a speaker</a>
</div>
</div>
</div>
<div class="flex flex-col gap-4">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-500 text-white">
<!-- https://heroicons.com -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M19 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 11-6.75 0 3.375 3.375 0 016.75 0zM4 19.235v-.11a6.375 6.375 0 0112.75 0v.109A12.318 12.318 0 0110.374 21c-2.331 0-4.512-.645-6.374-1.766z" />
</svg>
</div>
</div>
<div class="">
<dt class="text-lg leading-6 font-medium text-gray-900">
Join the community
</dt>
<dd class="mt-2 text-base text-gray-500">
Stay in the loop about future events by <a href="https://twitter.com/bcnjs">following us</a>. Be part of
our ever-growing community.
</dd>
<div class="mt-4 flex flex-row items-center justify-start">
<a href="https://www.meetup.com/barcelonajs/"
class="block px-4 py-3 border text-center text-base font-large rounded-md text-red-600 border-red-600 hover:text-white hover:bg-red-600">Join
the next meetup</a>
</div>
</div>
</div>
</dl>
</div>
</div>
</div>
<div id="organizers" class="py-12 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-red-600 font-semibold tracking-wide uppercase">
The team
</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Organizers
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
The people that have been organizing the events over the years.
</p>
</div>
</div>
<div
class="max-w-7xl mx-auto mt-10 mb-10 grid grid-cols-1 md:grid-cols-4 lg:grid-cols-4 gap-8 gap-y-10 text-center">
<div class="flex flex-col items-center">
<img src="/media/team/dmitry.jpg" alt="Dmitry Zaets" class="w-36 h-36 rounded">
<p class="mt-4 text-gray-900 font-bold text-xl">Dmitry Zaets</p>
<p class="text-sm">Co-organizer</p>
<div class="flex flex-row items-center gap-2 mt-1">
<a target="_blank" href="https://www.linkedin.com/in/dmitry-zaets/">
<img src="/media/icons/linkedin.svg" />
</a>
<a target="_blank" href="https://twitter.com/dmitryzaets">
<img src="/media/icons/twitter.svg" />
</a>
<a target="_blank" href="https://github.com/dmitry-zaets">
<img src="/media/icons/github.svg" />
</a>
</div>
</div>
<div class="flex flex-col items-center">
<img src="/media/team/yann.jpg" alt="Yann Torres" class="w-36 h-36 rounded">
<p class="mt-4 text-gray-900 font-bold text-xl">Yann Torres</p>
<p class="text-sm">Co-organizer</p>
<div class="flex flex-row items-center gap-2 mt-1">
<a target="_blank" href="https://www.linkedin.com/in/yann-torres/">
<img src="/media/icons/linkedin.svg" />
</a>
<a target="_blank" href="https://twitter.com/one_desert">
<img src="/media/icons/twitter.svg" />
</a>
<a target="_blank" href="https://github.com/onedesert">
<img src="/media/icons/github.svg" />
</a>
</div>
</div>
<div class="flex flex-col items-center">
<img src="/media/team/tudor.jpg" alt="Tudor Barbu" class="w-36 h-36 rounded">
<p class="mt-4 text-gray-900 font-bold text-xl">Tudor Barbu</p>
<p class="text-sm">Co-organizer</p>
<div class="flex flex-row items-center gap-2 mt-1">
<a target="_blank" href="https://www.linkedin.com/in/tudorbarbu/">
<img src="/media/icons/linkedin.svg" />
</a>
<a target="_blank" href="https://twitter.com/motanelu">
<img src="/media/icons/twitter.svg" />
</a>
<a target="_blank" href="https://github.com/motanelu">
<img src="/media/icons/github.svg" />
</a>
</div>
</div>
<div class="flex flex-col items-center">
<img src="/media/team/andrey.jpg" alt="Andrey Sitnik" class="w-36 h-36 rounded">
<p class="mt-4 text-gray-900 font-bold text-xl">Andrey Sitnik</p>
<p class="text-sm">Co-organizer</p>
<div class="flex flex-row items-center gap-2 mt-1">
<a target="_blank" href="https://www.linkedin.com/in/sinik/">
<img src="/media/icons/linkedin.svg" />
</a>
<a target="_blank" href="https://twitter.com/andreysitnik">
<img src="/media/icons/twitter.svg" />
</a>
<a target="_blank" href="https://github.com/ai">
<img src="/media/icons/github.svg" />
</a>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mt-20">
<div class="lg:text-center">
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Honorable founders
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
The people who founded the meetup in 2013 and grown it into one of the largest communities in Barcelona.
</p>
</div>
</div>
<div
class="max-w-7xl mx-auto mt-10 mb-10 grid grid-flow-row md:grid-flow-col justify-center auto-cols-max gap-44 gap-y-10 text-center">
<div class="flex flex-col items-center">
<img src="/media/founders/patrick.jpg" alt="Patrick Heneise" class="w-36 h-36 rounded">
<p class="mt-4 text-gray-900 font-bold text-xl">Patrick Heneise</p>
<div class="flex flex-row items-center gap-2 mt-1">
<a target="_blank" href="https://www.linkedin.com/in/patrickheneise/">
<img src="/media/icons/linkedin.svg" />
</a>
<a target="_blank" href="https://twitter.com/PatrickHeneise">
<img src="/media/icons/twitter.svg" />
</a>
<a target="_blank" href="https://github.com/patrickheneise">
<img src="/media/icons/github.svg" />
</a>
</div>
</div>
</div>
</div>
<div id="partners" class="py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-red-600 font-semibold tracking-wide uppercase">
Partners & Sponsors
</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Fueling the Community Together
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
The companies that have been helping organize the events numerous times.
</p>
</div>
</div>
<div
class="max-w-7xl mx-auto mt-20 mb-10 grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-8 gap-y-10 text-center">
<div class="flex flex-col items-center">
<a href="https://www.adevinta.com" target="_blank">
<img src="/media/sponsors/adevinta.svg" alt="Adevinta" class="w-48 object-cover">
</a>
<p class="text-sm mt-2">Frequent Sponsor</p>
</div>
<div class="flex flex-col items-center">
<a href="https://cmdn.io" target="_blank">
<img src="/media/sponsors/cmdn.svg" alt="CMDN" class=" h-12 object-cover">
</a>
<p class="text-sm mt-2">Partner & Media Sponsor</p>
</div>
<div class="flex flex-col items-center">
<a href="https://www.travelperk.com" target="_blank">
<img src="/media/sponsors/travelperk.svg" alt="TravelPerk" class="w-52 object-cover">
</a>
<p class="text-sm mt-2">Frequent Sponsor</p>
</div>
<div class="flex flex-col items-center">
<a href="https://www.honeypot.io/" target="_blank">
<img src="/media/sponsors/honeypot.svg" alt="Honeypot" class="w-52 object-cover">
</a>
<p class="text-sm mt-2">Frequent Sponsor</p>
</div>
</div>
</div>
<div id="workshops" class="py-12">
<div class="max-w-3xl mb-10 mx-auto lg:px-8 px-4 sm:px-6">
<div class="lg:text-center bg-neutral-900 rounded-2xl p-6 sm:px-20 sm:py-16 border border-neutral-700"
style="background: url('/media/workshops/bg.jpg') round">
<h2 class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl">
Workshops
</h2>
<p class="mt-4 max-w-2xl text-xl text-neutral-200 lg:mx-auto">
Level up your team's skills with BarcelonaJS and CMDN's on-site workshops!
Hands-on learning led by industry experts.
</p>
<div class="mt-4 max-w-2xl text-xl text-neutral-100 lg:mx-auto">
<div class="grid gap-4 sm:gap-6 justify-center items-center" style="grid-template-columns: 1fr 1rem 1fr;">
<div class="sm:py-3">
<img src="/media/workshops/bcnjs.svg" alt="BarcelonaJS" class="object-cover">
</div>
<div>
<img src="/media/workshops/x.svg" alt="separator" class="object-cover">
</div>
<div>
<img src="/media/workshops/cmdn.svg" alt="CMDN" class="object-cover">
</div>
</div>
</div>
<div class="mt-10 flex flex-col md:flex-row items-center gap-6 justify-center">
<a href="https://cmdn.io/react-workshops"
class="block px-6 py-3 border border-transparent text-center text-base font-large rounded-md text-neutral-950 bg-white hover:bg-white-200">React
Workshops</a>
<a href="https://cmdn.io/workshops"
class="block px-6 py-3 text-center text-base font-large rounded-md text-white">View
All
Workshops</a>
</div>
</div>
</div>
</div>
<div id="partners" class="py-12 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-red-600 font-semibold tracking-wide uppercase">
Meetup Recordings
</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Missed the previous meetup? Don't worry!
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
We've recorded the past events so you can easily watch them on our YouTube channel.
</p>
</div>
</div>
<div class="max-w-7xl mx-auto mt-10 mb-10 flex flex-col items-center justify-center p-8">
<div style="width: 100%; min-width: 400px; max-width: 800px;" class="p-4">
<div style="position: relative; width: 100%; overflow: hidden; padding-top: 56.25%;">
<p><iframe style="position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; border: none;"
width="560" height="315"
src="https://www.youtube.com/embed/videoseries?si=Rs9KjRLVoTnBECJl&list=PLjJNw28JQYnsIZZ_1Wj6uqBSpxQeSTYfn"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe></p>
</div>
</div>
</div>
</div>
<footer class="footer bg-gray-900 relative pt-1">
<div class="container mx-auto">
<div class="sm:flex sm:mt-8 ">
<div class="mt-8 sm:mt-0 sm:w-full sm:px-8 flex flex-col items-center space-y-4">
<img src="logo.png" class=logo alt="BarcelonaJS Logo" style="width: 99px; height: 71px;"><br>
<div class="social flex space-x-4">
<a href="https://twitter.com/bcnjs">
<img src=/twitter.svg class="icon w-5 h-5" alt="Twitter">
</a>
<a href="https://github.com/BarcelonaJS">
<img src=/github.svg class="icon w-5 h-5" alt="Github">
</a>
<a href="https://www.meetup.com/barcelonajs">
<img src=/meetup.svg class="icon w-5 h-5" alt="Meetup">
</a>
</div>
</div>
</div>
</div>
<div class="container mx-auto">
<div class="flex flex-col items-center">
<div class="sm:w-2/3 text-center py-6">
<p class="text-sm text-white font-bold mb-2">
© 2024 BarcelonaJS •
<a href="https://github.com/BarcelonaJS/organization/blob/main/code-of-conduct.md">Code of Conduct</a> •
<a href="https://github.com/BarcelonaJS/barcelonajs.com/blob/main/legal-notice.md">Legal Notice</a>
</p>
</div>
</div>
</div>
</footer>
<script defer src="menu.js"></script>
</body>
</html>