-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathequipe.html
1345 lines (1319 loc) · 62.1 KB
/
equipe.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="fr">
<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" />
<title>net7 - Équipe</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta
name="keywords"
content="informatique, club, enseeiht, toulouse, n7, réseau, jabber, serveurs"
/>
<meta
name="description"
content="Le club d'informatique de l’INP-ENSEEIHT"
/>
<!-- Tailwind -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Flobite css -->
<link rel="stylesheet" href="css/flowbite.min.css" />
<!-- Animate css -->
<link rel="stylesheet" href="css/animate.min.css" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
800: "#1e40af",
900: "#1e3a8a",
},
},
},
},
darkMode: "class",
};
</script>
<script>
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
if (
localStorage.theme === "dark" ||
(!("theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
</script>
</head>
<body class="flex flex-col min-h-screen">
<header>
<nav
class="bg-white border-gray-200 px-2 sm:px-4 py-2.5 dark:bg-gray-900"
>
<div
class="container flex flex-wrap justify-between items-center mx-auto"
>
<a href="index.html" class="flex items-center">
<img
class="dark:hidden mr-3 h-6 sm:h-9"
src="images/net7_dark.svg"
alt="net7 Logo"
/>
<img
class="hidden dark:block mr-3 h-6 sm:h-9"
src="images/net7_white.svg"
alt="net7 Logo"
/>
</a>
<div class="flex md:order-2">
<button
id="theme-toggle"
type="button"
class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5"
>
<svg
id="theme-toggle-dark-icon"
class="hidden w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"
></path>
</svg>
<svg
id="theme-toggle-light-icon"
class="hidden w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z"
fill-rule="evenodd"
clip-rule="evenodd"
></path>
</svg>
</button>
<button
data-collapse-toggle="navbar-cta"
type="button"
class="inline-flex items-center p-2 text-sm text-gray-800 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="navbar-cta"
aria-expanded="false"
>
<span class="sr-only">Open main menu</span>
<svg
class="w-6 h-6"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"
></path>
</svg>
</button>
</div>
<div
class="hidden justify-between items-center w-full md:flex md:w-auto md:order-1"
id="navbar-cta"
>
<ul
class="flex flex-col mt-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium"
>
<li>
<button
id="dropdownNavbarLink1"
data-dropdown-toggle="dropdownNavbar1"
class="flex justify-between items-center py-2 pr-4 pl-3 w-full font-medium text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:w-auto dark:text-gray-400 dark:hover:text-white dark:focus:text-white dark:border-gray-700 dark:hover:bg-gray-700 md:dark:hover:bg-transparent"
>
Le club
<svg
class="ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
<!-- Dropdown menu -->
<div
id="dropdownNavbar1"
class="z-10 w-44 font-normal bg-white rounded divide-y divide-gray-100 shadow dark:bg-gray-700 dark:divide-gray-600 hidden"
style="
position: absolute;
inset: 0px auto auto 0px;
margin: 0px;
transform: translate(501px, 60px);
"
data-popper-placement="bottom"
>
<ul class="py-1 text-sm text-gray-700 dark:text-gray-400">
<li>
<a
href="presentation.html"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
>Présentation</a
>
</li>
<li>
<a
href="equipe.html"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
>Équipe</a
>
</li>
<li>
<a
href="realisation.html"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
>Réalisations</a
>
</li>
</ul>
</div>
</li>
<li>
<button
id="dropdownNavbarLink2"
data-dropdown-toggle="dropdownNavbar2"
class="flex justify-between items-center py-2 pr-4 pl-3 w-full font-medium text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:w-auto dark:text-gray-400 dark:hover:text-white dark:focus:text-white dark:border-gray-700 dark:hover:bg-gray-700 md:dark:hover:bg-transparent"
>
Services
<svg
class="ml-1 w-4 h-4"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
<!-- Dropdown menu -->
<div
id="dropdownNavbar2"
class="z-10 w-44 font-normal bg-white rounded divide-y divide-gray-100 shadow dark:bg-gray-700 dark:divide-gray-600 hidden"
style="
position: absolute;
inset: 0px auto auto 0px;
margin: 0px;
transform: translate(501px, 60px);
"
data-popper-placement="bottom"
>
<ul class="py-1 text-sm text-gray-700 dark:text-gray-400">
<li>
<a
href="services.html"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
>Nos services</a
>
</li>
<li>
<a
href="hebergement.html"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
>Hébergement</a
>
</li>
<li>
<a
href="reparation.html"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
>Réparations</a
>
</li>
</ul>
</div>
</li>
<li>
<a
href="formation.html"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:dark:hover:text-white dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>Formations</a
>
</li>
<li>
<a
href="partenaire.html"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:dark:hover:text-white dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>Partenaires</a
>
</li>
<li>
<a
href="faq.html"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:dark:hover:text-white dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>FAQ</a
>
</li>
<li>
<a
href="contact.html"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:dark:hover:text-white dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="flex-auto bg-white dark:bg-gray-900">
<!-- Img modal -->
<div
id="Modal"
class="hidden overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 w-full md:inset-0 h-modal md:h-full items-center justify-center"
>
<div class="relative p-4 w-full max-w-4xl h-full md:h-auto">
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow dark:bg-gray-700">
<!-- Modal header -->
<div
class="flex justify-between items-start p-4 rounded-t border-b dark:border-gray-600"
>
<h3
class="text-xl font-semibold text-gray-900 dark:text-white"
id="title"
></h3>
<button
type="button"
class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm p-1.5 ml-auto inline-flex items-center dark:hover:bg-gray-600 dark:hover:text-white"
onclick="closeModal()"
>
<svg
aria-hidden="true"
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<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>
<span class="sr-only">Close modal</span>
</button>
</div>
<!-- Modal body -->
<div class="p-6 space-y-6">
<img src="" alt="" class="rounded-md" id="imgModal" />
</div>
<!-- Modal footer -->
<div
class="flex items-center p-6 space-x-2 rounded-b border-t border-gray-200 dark:border-gray-600"
>
<p
id="caption"
class="text-md font-medium text-gray-900 dark:text-white text-opacity-100 w-full text-center"
></p>
</div>
</div>
</div>
</div>
<!-- Backdrop Modal -->
<div
class="bg-gray-900 bg-opacity-50 dark:bg-opacity-80 fixed inset-0 z-40 hidden"
id="modal-backgrop"
></div>
<section id="bureau">
<div
class="py-8 px-4 mx-auto max-w-screen-xl text-center lg:py-16 lg:px-6"
>
<div class="mx-auto mb-8 max-w-screen-sm lg:mb-16">
<h2
class="mb-4 text-4xl tracking-tight font-extrabold text-gray-900 dark:text-white"
>
Bureau de net7
</h2>
<p class="font-light text-gray-800 sm:text-xl dark:text-gray-400">
Année 2023-2024
</p>
</div>
<div
class="grid gap-8 lg:gap-16 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5"
>
<div class="text-center text-gray-800 dark:text-gray-400">
<img
class="mx-auto mb-4 w-36 h-36 rounded-full"
src="images/alice.jpg"
alt="Alice Avatar"
/>
<h3
class="mb-1 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"
>
<a href="#">Alice Dissoubray</a>
</h3>
<p>Secrétaire</p>
<ul class="flex justify-center mt-4 space-x-4">
<li>
<a
href="https://www.linkedin.com/in/alice-dissoubray-9a1116295/"
class="text-[#39569c] hover:text-gray-900 dark:hover:text-white"
target="_blank"
>
<svg
class="w-6 h-6"
fill="currentColor"
viewBox="0 0 448 512"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
<div class="text-center text-gray-800 dark:text-gray-400">
<img
class="mx-auto mb-4 w-36 h-36 rounded-full"
src="images/cyrian.jpg"
alt="Cyrian Avatar"
/>
<h3
class="mb-1 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"
>
<a href="#">Cyrian Ragot</a>
</h3>
<p>Vice-Président</p>
<ul class="flex justify-center mt-4 space-x-4">
<li>
<a
href="https://www.linkedin.com/in/cyrian-ragot-655585286/"
class="text-[#39569c] hover:text-gray-900 dark:hover:text-white"
target="_blank"
>
<svg
class="w-6 h-6"
fill="currentColor"
viewBox="0 0 448 512"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
<div class="text-center text-gray-800 dark:text-gray-400">
<img
class="mx-auto mb-4 w-36 h-36 rounded-full"
src="images/evann.jpg"
alt="Evann Avatar"
/>
<h3
class="mb-1 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"
>
<a href="#">Evann Dreumont</a>
</h3>
<p>Président</p>
<ul class="flex justify-center mt-4 space-x-4">
<li>
<a
href="https://www.linkedin.com/in/evann-dreumont/"
target="_blank"
class="text-[#39569c] hover:text-gray-900 dark:hover:text-white"
>
<svg
class="w-6 h-6"
fill="currentColor"
viewBox="0 0 448 512"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
<div class="text-center text-gray-800 dark:text-gray-400">
<img
class="mx-auto mb-4 w-36 h-36 rounded-full"
src="images/benjamin.jpg"
alt="Benjamin Avatar"
/>
<h3
class="mb-1 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"
>
<a href="#">Benjamin Soyer</a>
</h3>
<p>Vice-président</p>
<ul class="flex justify-center mt-4 space-x-4">
<li>
<a
href="https://www.linkedin.com/in/benjamin-soyer-5624a1252/"
class="text-[#39569c] hover:text-gray-900 dark:hover:text-white"
target="_blank"
>
<svg
class="w-6 h-6"
fill="currentColor"
viewBox="0 0 448 512"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
</ul>
</div>
<div class="text-center text-gray-800 dark:text-gray-400">
<img
class="mx-auto mb-4 w-36 h-36 rounded-full"
src="images/nell.jpg"
alt="Nell Avatar"
/>
<h3
class="mb-1 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"
>
<a href="#">Nell Truong</a>
</h3>
<p>Trésorier</p>
<ul class="flex justify-center mt-4 space-x-4">
<li>
<a
href="https://www.linkedin.com/in/nell-truong/"
class="text-[#39569c] hover:text-gray-900 dark:hover:text-white"
target="_blank"
>
<svg
class="w-6 h-6"
fill="currentColor"
viewBox="0 0 448 512"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
<li>
<a
href="https://nelltruong.dev/"
target="_blank"
class="text-[#39569c] hover:text-gray-900 dark:hover:text-white"
>
<svg
class="w-6 h-6"
fill="none"
viewBox="0 0 448 512"
stroke="currentColor"
aria-hidden="true"
>
<path stroke-width="26"
d="M209,15a195,195 0 1,0 2,0z"/>
<path stroke-width="18"
d="m210,15v390m195-195H15M59,90a260,260 0 0,0 302,0 m0,240 a260,260 0 0,0-302,0M195,20a250,250 0 0,0 0,382 m30,0 a250,250 0 0,0 0-382"/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="timeline">
<div class="container mx-auto w-full h-full">
<div class="relative wrap overflow-hidden p-10 h-full">
<div
class="border-2-2 absolute border-opacity-20 border-gray-700 h-full md:border"
style="left: 50%"
></div>
<!-- right 2023 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full right-timeline"
>
<button
class="order-3 md:order-1 md:w-5/12 overflow-hidden flex flex-row-reverse wow animate__animated animate__slideInLeft"
type="button"
onclick="showModal('net7-2023')"
>
<img
src="images/net7-2023.jpg"
alt="net7-2023"
id="net7-2023"
caption="Première ligne, de gauche à droite : Téo Pisenti, Nathan Auchère, Ewen Le Bihan, Hugo Simon <br>
Seconde ligne, dans le même sens : Thibault Mousset, Alaric Becker, Aymane Kssim, Theodor Vallier, Damien Dassieu, Quentin Fratty, Gabriel Rochaix-Yamamoto"
class="rounded-lg hover:scale-110"
style="max-height: 150px"
/>
</button>
<div
class="z-20 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 bg-blue-200 rounded-full dark:ring-gray-900 dark:bg-blue-900 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-3 bg-primary-100 dark:bg-primary-900 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInRight"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2023-2024)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Présidente : Gwen Le Bihan<br />
Vice-Président : Téo Pisenti<br />
Vice-Président : Hugo Simon<br />
Trésorier : Nathan Auchère<br />
Secrétaire : Floriane Payen
</p>
</div>
</div>
<!-- left 2022 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full left-timeline"
>
<div class="order-3 md:w-5/12">
<button
class="overflow-hidden flex flex-row-reverse wow animate__animated animate__slideInRight"
type="button"
onclick="showModal('net7-2022')"
>
<img
src="images/net7-2022.jpg"
alt="net7-2022"
id="net7-2022"
caption="Première ligne, de gauche à droite : Juliette Perrier, Laurent Fainsin, Mathis Grisel, Theodor Vallier, Jade
Seconde ligne, dans le même sens : Nathan Maillet, Pierre-Antoine Japy, Colin, Romain
Troisième ligne : Aymane, Clement Broutin, Philipe, Clément, Romain, Tom Pillot"
class="rounded-lg hover:scale-110"
style="max-height: 150px"
/>
</button>
</div>
<div
class="z-20 order-1 md:order-2 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 rounded-full bg-primary-50 dark:bg-primary-500 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-1 bg-primary-50 dark:bg-primary-500 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInLeft"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2022-2023)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : Theodor Vallier<br />
Vice-Président : Nathan Maillet / Nohé Hinniger-Foray<br />
Trésorier : Gabriel Rochaix-Yamamoto<br />
Secrétaire : Damien Dassieu
</p>
</div>
</div>
<!-- right 2021 -->
<div
class="mb-8 flex justify-between items-center flex-col md:flex-row gap-8 w-full right-timeline"
>
<div class="order-3 md:order-1 md:w-5/12"></div>
<div
class="z-20 order-1 md:order-2 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 bg-blue-200 rounded-full dark:ring-gray-900 dark:bg-blue-900 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-3 bg-primary-100 dark:bg-primary-900 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInRight"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2021-2022)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : Pierre-Antoine Japy<br />
Vice-Président : Mathis Grisel<br />
Trésorier : Laurent Fainsin<br />
Secrétaire : Clement Broutin
</p>
</div>
</div>
<!-- left 2020 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full left-timeline"
>
<button
class="order-3 md:w-5/12 overflow-hidden wow animate__animated animate__slideInRight"
type="button"
onclick="showModal('net7-2020')"
>
<img
src="images/net7-2020.jpg"
alt="net7-2020"
id="net7-2020"
caption="L'équipe de la THC, avec des membres des promos 2020, 2021 et 2022"
class="rounded-lg hover:scale-110"
style="max-height: 150px"
/>
</button>
<div
class="z-20 order-1 md:order-2 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 rounded-full bg-primary-50 dark:bg-primary-500 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-1 bg-primary-50 dark:bg-primary-500 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInLeft"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2020-2021)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : Gautier Ben Aïm<br />
Vice-Président : Tom Pillot<br />
Trésorier : Romain Malmain<br />
Secrétaire : Tanguy Duvignac
</p>
</div>
</div>
<!-- right 2019 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full right-timeline"
>
<div class="order-3 md:order-1 md:w-5/12"></div>
<div
class="z-20 order-1 md:order-2 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 bg-blue-200 rounded-full dark:ring-gray-900 dark:bg-blue-900 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-3 bg-primary-100 dark:bg-primary-900 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInRight"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2019-2020)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : Corentin Lauverjat<br />
Vice-Président : Sherwin Sabras<br />
Trésorier : Jean-Francois Giraud<br />
Secrétaire : Simon Thoby
</p>
</div>
</div>
<!-- left 2018 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full left-timeline"
>
<div class="order-3 md:w-5/12"></div>
<div
class="z-20 order-1 md:order-2 order1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 rounded-full bg-primary-50 dark:bg-primary-500 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-1 bg-primary-50 dark:bg-primary-500 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInLeft"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2018-2019)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : François Conzelmann<br />
Vice-Président : Augustin Matter<br />
Trésorier : Lucas Salvato<br />
Secrétaire : Raphael Le Blé
</p>
</div>
</div>
<!-- right 2017 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full right-timeline"
>
<div class="order-3 md:order-1 md:w-5/12"></div>
<div
class="z-20 order-1 md:order-2 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 bg-blue-200 rounded-full dark:ring-gray-900 dark:bg-blue-900 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-3 bg-primary-100 dark:bg-primary-900 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInRight"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2017-2018)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : Thomas Bailleux<br />
Vice-Président : Valentin Deniaud<br />
Trésorier : Stanislas Deneuville<br />
Secrétaire : Valentin Rigal
</p>
</div>
</div>
<!-- left 2016 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full left-timeline"
>
<button
class="order-3 md:w-5/12 overflow-hidden wow animate__animated animate__slideInRight"
type="button"
onclick="showModal('net7-2016')"
>
<img
src="images/net7-2016.jpg"
alt="net7-2016"
id="net7-2016"
caption="Voici les membres de net7, à la passation 2016"
class="rounded-lg hover:scale-110"
style="max-height: 150px"
/>
</button>
<div
class="z-20 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 rounded-full bg-primary-50 dark:bg-primary-500 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
></path>
</svg>
</div>
<div
class="order-2 md:order-1 bg-primary-50 dark:bg-primary-500 rounded-lg shadow-xl md:w-5/12 px-6 py-4 wow animate__animated animate__slideInLeft"
>
<h3
class="mb-3 font-bold text-gray-900 dark:text-white text-xl"
>
Bureau du club (2016-2017)
</h3>
<p
class="text-sm font-medium leading-snug tracking-wide text-gray-900 dark:text-white text-opacity-100"
>
Président : Tessia Piboubès<br />
Vice-Président : Léna David<br />
Trésorier : Nicolas Surbayrole<br />
Secrétaire : Sacha Liguori
</p>
</div>
</div>
<!-- right 2015 -->
<div
class="mb-8 flex justify-between flex-col md:flex-row gap-8 items-center w-full right-timeline"
>
<button
class="order-3 md:order-1 md:w-5/12 overflow-hidden flex flex-row-reverse wow animate__animated animate__slideInLeft"
type="button"
onclick="showModal('net7-2015')"
>
<img
src="images/net7-2015.jpg"
alt="net7-2015"
id="net7-2015"
caption="Première ligne, de gauche à droite : Bernard Desmyter, Maxence Ahlouche, Élie « djanos » Bouttier, Maxime « maxima » Arthaud, Baptiste « nouph » Pichot
Seconde ligne, dans le même sens : Thomas « cydonia » Royer, Anaël Megna, Axel « gofish » Tripier, Franklin « ethelward » Delehelle, Yann Mougenel
À droite : Vincent « vinduv » Duvert. Au centre : Korantin « palkeo » Auguste"
class="rounded-lg hover:scale-110"
style="max-height: 150px"
/>
</button>
<div
class="z-20 order-1 md:order-2 flex items-center justify-center order-1 shadow-xl w-8 h-8 bg-blue-200 rounded-full dark:ring-gray-900 dark:bg-blue-900 wow animate__animated animate__slideInUp"
>
<svg
class="w-5 h-5 text-gray-900 dark:text-white"
fill="none"
stroke="currentColor"