-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
1982 lines (1850 loc) · 78.5 KB
/
schedule.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="csrf-token"
content="GRUyBRQRPQIFLi48BikoGE5ARiowWG8BkQcMYi_jLzGr7vbK622fSu8B"
/>
<title data-suffix=" · JOIN">Home · JOIN</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="stylesheet" href="assets/app.css" />
<script
defer
src="https://cdn.jsdelivr.net/npm/alpinejs@3.11.1/dist/cdn.min.js"
></script>
</head>
<div>
<body
class="overflow-x-hidden bg-gradient-to-l from-primary via-secondary to-primary"
>
<header x-data="{ navbar: false }" class="px-8 lg:px-14 xl:px-20">
<div
x-show="navbar"
class="fixed inset-0 z-50 lg:hidden"
role="dialog"
aria-modal="true"
>
<div
x-transition:enter="transition-opacity ease-linear duration-300"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="transition-opacity ease-linear duration-300"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
class="hidden z-50 sm:block sm:fixed sm:inset-0 sm:bg-gray-600 sm:bg-opacity-75"
aria-hidden="true"
@click="navbar = false"
></div>
<nav
x-transition:enter="transition ease-out duration-150 sm:ease-in-out sm:duration-300"
x-transition:enter-start="transform opacity-0 scale-110 sm:translate-x-full sm:scale-100 sm:opacity-100"
x-transition:enter-end="transform opacity-100 scale-100 sm:translate-x-0 sm:scale-100 sm:opacity-100"
x-transition:leave="transition ease-in duration-150 sm:ease-in-out sm:duration-300"
x-transition:leave-start="transform opacity-100 scale-100 sm:translate-x-0 sm:scale-100 sm:opacity-100"
x-transition:leave-end="transform opacity-0 scale-110 sm:translate-x-full sm:scale-100 sm:opacity-100"
class="fixed inset-0 z-50 py-6 w-full h-full sm:inset-y-0 sm:right-0 sm:left-auto sm:w-full sm:max-w-sm sm:shadow-lg bg-primary"
aria-label="Global"
>
<div class="flex justify-between items-center px-4 h-16 sm:px-6">
<a href="index.html">
<img class="w-28" src="images/logo.svg" alt="JOIN Logo" />
</a>
<button
@click="navbar = false"
class="inline-flex justify-center items-center p-2 text-white"
>
<span class="sr-only">Close main menu</span>
<svg
class="w-6 h-6"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</div>
<div
class="flex flex-col items-center w-full mx-auto overflow-scroll gap-y-8 my-6 h-[75%]"
>
<a href="index.html">
<span
@click="navbar = false"
class="false text-white text-lg text-center hover:text-gray-300"
>
Home
</span>
</a>
<a href="schedule.html">
<span
@click="navbar = false"
class="font-bold text-white text-lg text-center hover:text-gray-300"
>
Schedule
</span>
</a>
<a href="missions.html">
<span
@click="navbar = false"
class="false text-white text-lg text-center hover:text-gray-300"
>
Missions
</span>
</a>
<a href="faqs.html">
<span
@click="navbar = false"
class="false text-white text-lg text-center hover:text-gray-300"
>
Faqs
</span>
</a>
</div>
<div
class="flex absolute bottom-0 justify-between items-center py-4 px-8 mx-auto w-full bg-primary"
>
<a href="https://cesium.di.uminho.pt/">
<img
class="h-auto text-white w-[70px]"
src="images/logos/cesium.svg"
alt="CeSIUM Logo"
/>
</a>
<a href="https://necc.di.uminho.pt/">
<img
class="h-auto text-white w-[70px]"
src="images/logos/necc.svg"
alt="NECC Logo"
/>
</a>
<a href="https://nefum.di.uminho.pt/">
<img
class="h-auto text-white w-[70px]"
src="images/logos/nefum.svg"
alt="NEFUM Logo"
/>
</a>
</div>
</nav>
</div>
<div class="flex justify-between items-center pt-10 w-full lg:pt-14">
<div class="hidden w-full text-white lg:block">
<div class="flex flex-col lg:flex-row">
<div class="flex flex-row items-center space-x-1">
<span class="false inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="index.html"
>Home</a
>
</span>
<span class="select-none">|</span>
<span class="font-bold inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="schedule.html"
>Schedule</a
>
</span>
<span class="select-none">|</span>
<span class="false inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="missions.html"
>Missions</a
>
</span>
<span class="select-none">|</span>
<span class="false inline-flex px-2">
<a
class="uppercase inline-flex px-1 text-xs xl:text-base"
href="faqs.html"
>Faqs</a
>
</span>
</div>
</div>
</div>
<div class="flex flex-row justify-between w-full lg:flex-row-reverse">
<div class="flex gap-x-4 justify-center items-center sm:gap-x-8">
<a href="https://cesium.di.uminho.pt/">
<img
class="w-16 h-auto text-white md:w-20"
src="images/logos/cesium.svg"
alt="CeSIUM Logo"
/>
</a>
<a href="https://necc.di.uminho.pt/">
<img
class="w-16 h-auto text-white md:w-20"
src="images/logos/necc.svg"
alt="NECC Logo"
/>
</a>
<a href="https://nefum.di.uminho.pt/">
<img
class="w-12 h-auto text-white md:w-16"
src="images/logos/nefum.svg"
alt="NEFUM Logo"
/>
</a>
</div>
<button class="lg:hidden" type="button" @click="navbar = !navbar">
<img
class="w-5 sm:w-6"
src="images/assets/hamburger.svg"
alt="Hamburger menu"
/>
</button>
</div>
</div>
</header>
<main class="px-8 md:px-14 xl:px-20">
<p class="alert alert-info" role="alert"></p>
<p class="alert alert-danger" role="alert"></p>
<div class="mt-20 md:mt-28">
<div
class="relative w-full h-[300px] sm:h-[350px] lg:h-[480px] xl:h-[550px]"
>
<div
class="absolute -rotate-90 -left-[186px] top-[106px] md:-left-[153px] lg:top-[198px] lg:-left-[132px]"
>
<span class="title"> Schedule </span>
</div>
<div
class="ml-20 font-extrabold leading-none text-white uppercase md:ml-36 2xl:mx-80 text-[35px] sm:text-[60px] lg:ml-[240px] lg:text-[78px] xl:text-[90px]"
>
JOIN us for a week full of
<span class="underline decoration-4 sm:decoration-8"
>surprises</span
>.
</div>
</div>
<div
x-data="{ date: new Date().toISOString() >= '2022-06-28 08:30:00.to_iso8601!()' && new Date().toISOString() <= '2022-06-30 20:30:00.to_iso8601!()' ? new Date().getDay() : 2 }"
class="flex flex-row my-10 h-auto lg:my-20 1.5xl:min-h-[1000px] xl:min-h-[900px]"
>
<div class="hidden relative w-full 1.5xl:block">
<img
class="absolute -right-24 w-[1200px] h-[740px] -z-40"
src="images/cords/schedule_cords.svg"
alt="hero cords"
/>
<button
@click=" date = 2 "
:class=" date == 2 ? 'bg-[#E0483F] font-bold' : 'bg-[#BB2A22]' "
class="absolute select-none w-40 py-2 text-lg text-center text-white border-4 border-white rounded-full h-14 right-[704px] top-5"
>
28 of June
</button>
<button
@click=" date = 3 "
:class=" date == 3 ? 'bg-[#E0483F] font-bold' : 'bg-[#BB2A22]' "
class="absolute select-none w-40 py-2 text-lg text-center text-white border-4 border-white rounded-full h-14 right-[433px] top-5"
>
29 of June
</button>
<button
@click=" date = 4 "
:class=" date == 4 ? 'bg-[#E0483F] font-bold' : 'bg-[#BB2A22]' "
class="absolute select-none w-40 py-2 text-lg text-center text-white border-4 border-white rounded-full h-14 right-40 top-5"
>
30 of June
</button>
<div
x-show="date == 2"
class="grid absolute right-0 top-32 grid-cols-5 gap-y-6 gap-x-8 p-10"
>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
Acreditação
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
08h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
Sessão de abertura
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
09h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Set the stage
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
10h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
Roberto Machado
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Subvisual
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Intro to the blockchain
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
10h30
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
Mário Gago
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Pink Room
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
☕ Coffee break
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
11h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] An Ethereum Network Explorer using Elixir ...
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
11h30
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
Diogo Viana
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Finiam
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Mobile development for the web3
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
12h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
André Maximino
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Pink Room
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
🍝 Almoço
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
12h30
</p>
</span>
</div>
<style>
.ring {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
calc(2px + var(--tw-ring-offset-width))
var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow),
var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
</style>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Workshop] Intro to Solidity
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
14h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
Miguel Palhas
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Subvisual
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
14h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Accenture
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
☕ Coffee break
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] Continental
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] Mercedes Benz IO
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h45
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] Optare Solutions
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h15
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
Braga, Blockchain Meetup
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
18h30
</p>
</span>
</div>
</div>
<div
x-show="date == 3"
class="grid absolute right-0 top-32 grid-cols-5 gap-y-6 gap-x-8 p-10"
>
<style>
.ring {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
calc(2px + var(--tw-ring-offset-width))
var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow),
var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
</style>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Workshop] Securing Cloud Infrastructure using KI...
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
09h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
João Reijota
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Checkmarx
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
☕ Coffee break
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
11h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Combining professional success and well-be...
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
11h30
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Catedra Proef/D...
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
🍝 Almoço
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
12h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Digital Solutions
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
14h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Continental
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
15h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
☕ Coffee break
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] Catedra Proef/Dstelecom/IB-S
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] Inovaria
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h45
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] ANO
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h15
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
17h45
</p>
</span>
</div>
</div>
<div
x-show="date == 4"
class="grid absolute right-0 top-32 grid-cols-5 gap-y-6 gap-x-8 p-10"
>
<style>
.ring {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
calc(2px + var(--tw-ring-offset-width))
var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow),
var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
</style>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Workshop] Containers & Terraform na Google Cloud
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
09h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
Carlos Mendes
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Kelvin
</p>
</span>
</div>
<style>
.ring {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
calc(2px + var(--tw-ring-offset-width))
var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow),
var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
</style>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Workshop] TBA
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
09h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Deloitte
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
☕ Coffee break
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
11h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Pago para jogar
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
11h30
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
Pedro Nunes
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Miniclip
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
🍝 Almoço
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
12h30
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] Desafios de um Game Developer (Remote)
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
14h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
António Pacheco
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Miniclip
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Talk] A tecnologia ao serviço do negócio ou o ne...
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
15h00
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[131px]"
>
José Cunha, Raf...
</p>
<p
class="absolute left-3 w-32 text-sm font-light top-[145px]"
>
Optare Solution...
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
☕ Coffee break
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>
16h00
</p>
</span>
</div>
<div class="bg-[#BB2A22] w-36 h-44 rounded-3xl relative -z-50">
<span class="text-white">
<p class="absolute left-3 top-4 w-32 text-sm font-light">
[Pitch] Eurotux
</p>
<p
class="absolute left-3 w-32 font-bold text-md top-[105px]"
>