-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1209 lines (1103 loc) · 61.4 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
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 name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="HandheldFriendly" content="True">
<meta name="description"
content="SaaS alanındaki son gelişmeleri yakından takip etmek, zorlukları ve fırsatları keşfetmek, ilham verici konuşmacılarla tanışmak ve sektör profesyonelleriyle bağlantı kurmak için bu heyecan verici etkinliği kaçırmayın."/>
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<meta property="og:locale" content="tr_TR"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="SaaStanbul 2023"/>
<meta property="og:description" content="SaaStanbul 2023 - 13 Temmuz 2023 Bahçeşehir Üniversitesi"/>
<meta property="og:url" content="https://saastanbul.com/"/>
<meta property="og:site_name" content="SaaStanbul 2023"/>
<meta property="og:image" content="https://saastanbul.com/images/og-image.png"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://saastanbul.com/images/og-image.png"/>
<meta name="twitter:description" content="SaaStanbul 2023 - 13 Temmuz 2023 Bahçeşehir Üniversitesi"/>
<meta name="twitter:title" content="SaaStanbul 2023"/>
<title>SaaStanbul 2023</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/lazyload.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
main: {
0: '#FEFEFF',
700: '#9CA1AB',
800: '#4C4F57',
900: '#121723',
},
sea: {
50: '#F1FDFF',
100: '#D7EBF4',
200: '#C5EFF6',
300: '#7DC7FF',
400: '#55ACEE',
},
mid: {
600: '#18223A',
700: '#232835',
800: '#101420',
900: '#080E1D',
},
sup: {
700: '#006B7D',
800: '#0058AC',
900: '#104C85',
},
grey: {
100: '#EEEEEE',
200: '#D8D8D8',
300: '#B1B1B1',
400: '#8A8A8A',
500: '#646464',
600: '#474747',
700: '#353535',
800: '#242424',
900: '#121212',
},
azul: {
100: '#E9EFFD',
200: '#CFDCFB',
300: '#9EBAF6',
400: '#6E97F2',
500: '#3D74ED',
600: '#2158D1',
700: '#19429D',
800: '#102C68',
900: '#081634',
}
},
fontFamily: {
'sans': ['Maven Pro', 'sans-serif'],
},
borderRadius: {},
letterSpacing: {
primary: '-0.6px',
secondary: '-0.03em',
}
}
}
}
</script>
<style type="text/tailwindcss">
@layer components {
html {
scroll-behavior: smooth;
}
.section-container {
@apply max-w-[1216px] mx-auto;
}
.nav-item {
@apply text-base text-main-900 font-medium tracking-primary;
}
.page-title {
@apply lg:text-[76px] text-[38px] lg:leading-[120%] leading-[46px] text-center tracking-secondary;
background: linear-gradient(180deg, #184C57 0%, #121723 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
h2 {
@apply lg:text-[32px] lg:leading-9 text-2xl text-main-900 font-medium tracking-secondary;
}
.bg-sky-border-gradient {
background: linear-gradient(360deg, rgba(65, 228, 255, 0) 0%, rgba(65, 228, 255, 0.5) 49.79%, rgba(65, 228, 255, 0) 100%), radial-gradient(50% 50% at 50% 50%, #CEF1F7 0%, rgba(206, 241, 247, 0) 100%);
}
.speaker-card {
@apply lg:max-w-[182px] lg:w-full max-w-[147px];
}
.organizer-card {
@apply lg:max-w-[180px] lg:w-full max-w-[147px];
}
:is(.speaker-card, .organizer-card) .social-box {
@apply absolute inset-0 flex items-center justify-center lg:gap-x-4 gap-x-2 lg:mx-0 mx-3 bg-azul-800 bg-opacity-70 transition-all ease-in-out duration-150;
}
:is(.speaker-card, .organizer-card) .title {
@apply mt-3 text-base text-main-0 text-center font-medium tracking-primary;
}
:is(.speaker-card, .organizer-card) .desc {
@apply mt-1 text-xs text-main-700 text-center tracking-secondary lg:px-4 px-1;
}
.organizer-card .avatar {
@apply w-full lg:h-[160px] lg:object-cover;
}
.schedule-title {
@apply text-xl text-azul-500 font-semibold text-center max-w-[550px] w-full whitespace-nowrap;
}
.schedule-list {
@apply pt-12 max-w-[154px] w-full;
}
.schedule-card {
@apply flex flex-col items-center justify-center bg-white rounded-xl text-lg text-main-900 font-medium tracking-secondary text-center lg:mt-0 mt-4;
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06);
}
.schedule-card.empty {
@apply min-h-[108px]
}
.schedule-card .title {
@apply p-4 border-b border-[#F6F6F7] min-h-[88px] flex items-center justify-center;
}
.schedule-card .speaker-box {
@apply text-base py-4 flex items-center justify-center gap-x-2;
}
.schedule-card .speaker-box .avatar {
@apply rounded-full h-6 w-6;
}
.schedule-time {
@apply flex items-center lg:text-lg text-base lg:text-main-900 text-azul-500 font-medium tracking-secondary even:text-main-700;
}
.schedule-time-box {
@apply left-[-150px] top-0 z-10
}
@media screen and (min-width: 1000px) and (max-width: 1500px) {
.schedule-time-box {
border-radius: 20px;
padding: 1px 10px;
left: -10px;
top: -10px;
align-items: flex-start;
justify-content: flex-start;
height: auto !important;
background: linear-gradient(0deg, rgb(8, 14, 29), rgb(8, 14, 29));
}
.schedule-time-box .schedule-time {
font-size: 14px;
color: #fff;
}
}
.tweet-card {
@apply p-6 bg-white border border-azul-100 rounded-2xl lg:max-w-[344px] max-w-[278px] flex-shrink-0;
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06);
}
.sponsor-card {
@apply flex items-center justify-center lg:py-10 py-8 rounded-xl bg-main-900;
box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
}
.sponsor-card.diamond {
@apply bg-mid-700;
}
.faq-item {
@apply p-6;
}
.faq-item:not(.active) {
@apply cursor-pointer;
}
.faq-item.active {
@apply bg-[#F7F9FC];
}
.faq-item.active .icon {
@apply rotate-180
}
.faq-item.active .desc {
@apply block;
}
faq-item .icon {
@apply transform ease-in-out duration-150;
}
.faq-item .title {
@apply lg:text-lg text-base text-main-900 font-medium tracking-secondary;
}
.faq-item .desc {
@apply hidden mt-4 text-base text-main-900 tracking-secondary pr-10;
}
.gradient-border {
border-image: linear-gradient(0deg, rgba(16, 76, 133, 0) 0%, #0058AC 100%) 1;
border-width: 1px;
border-style: solid;
}
}
</style>
</head>
<body class="lg:px-0 px-4">
<div id="app">
<!-- NAVIGATION -->
<div class="lg:mx-0 -mx-4 border-b border-sea-50" style="box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06)">
<nav class="section-container flex items-center justify-between lg:py-6 lg:px-0 p-4">
<a href="index.html">
<img src="/logo.svg" class="lg:max-w-full max-w-[128px]" alt="">
</a>
<div class="lg:flex hidden items-center gap-x-10">
<a href="#konuşmacılar" class="nav-item">
Konuşmacılar
</a>
<a href="#program" class="nav-item">
Program
</a>
<a href="#sponsorlar" class="nav-item">
Sponsorlar
</a>
<a href="#biletler" class="nav-item">
Biletler
</a>
<a href="#sss" class="nav-item">
S.S.S
</a>
<a href="#organizatörler" class="nav-item">
Organizatörler
</a>
</div>
<a target="_blank" href="https://kommunity.com/saastanbul/events/saastanbul-2023-101374c0/tickets"
class="lg:inline-block hidden rounded-lg py-2 px-6 text-base text-main-900 border border-sea-200 font-medium"
style="background: linear-gradient(90deg, #F1FCFF 0%, #EFFFFD 100%); box-shadow: 0px 1px 3px rgba(238, 255, 254, 0.25), 0px 0.5px 0.5px rgba(238, 255, 254, 0.25)">
Bilet satın al
</a>
<button class="lg:hidden block" @click="showMobileMenu">
<img src="/icons/menu-icon.svg" alt="">
</button>
</nav>
</div>
<div id="mobile-menu" class="fixed inset-0 z-[999] bg-white" style="display: none" v-show="isMenuOpen">
<div class="flex justify-between items-center p-4 border-b border-sea-50">
<img src="/logo.svg" class="lg:w-auto max-w-[128px] lazy" alt="">
<button class="relative" @click="hideMobileMenu">
<img src="/icons/x-icon.svg" class="lazy" alt="">
</button>
</div>
<div class="p-6">
<div class="space-y-6">
<a href="#konuşmacılar" class="block text-2xl text-grey-800 font-medium tracking-secondary"
@click="hideMobileMenu">
Konuşmacılar
</a>
<a href="#program" class="block text-2xl text-grey-800 font-medium tracking-secondary"
@click="hideMobileMenu">
Program
</a>
<a href="#sponsorlar" class="block text-2xl text-grey-800 font-medium tracking-secondary"
@click="hideMobileMenu">
Sponsorlar
</a>
<a href="#biletler" class="block text-2xl text-grey-800 font-medium tracking-secondary"
@click="hideMobileMenu">
Biletler
</a>
<a href="#sss" class="block text-2xl text-grey-800 font-medium tracking-secondary"
@click="hideMobileMenu">
S.S.S
</a>
<a href="#organizatörler" class="block text-2xl text-grey-800 font-medium tracking-secondary"
@click="hideMobileMenu">
Organizatörler
</a>
</div>
<a href="https://kommunity.com/saastanbul/events/saastanbul-2023-101374c0/tickets"
class="mt-10 block rounded-lg py-3 text-xl text-main-900 text-center tracking-secondary border border-sea-200 font-medium"
style="background: linear-gradient(90deg, #F1FCFF 0%, #EFFFFD 100%); box-shadow: 0px 1px 3px rgba(238, 255, 254, 0.25), 0px 0.5px 0.5px rgba(238, 255, 254, 0.25)">
Bilet satın al
</a>
</div>
</div>
<!-- HERO -->
<div class="relative lg:pt-20 pt-16 lg:mx-0 -mx-4 lg:px-0 px-4">
<img src="/images/hero-bg.png" class="lg:block hidden absolute top-0 left-1/2 transform -translate-x-1/2"
alt="">
<img src="/images/mobile-hero-bg.png"
class="lg:hidden block absolute top-0 left-1/2 transform -translate-x-1/2 w-full" alt="">
<div class="relative z-10">
<div class="max-w-[800px] mx-auto">
<h1 class="page-title"><span class="font-semibold">SaaS</span>tanbul 2023</h1>
<p class="lg:mt-6 mt-4 lg:text-2xl text-lg text-main-800 text-center tracking-primary">
SaaS alanındaki son gelişmeleri yakından takip etmek, zorlukları ve fırsatları keşfetmek, ilham
verici konuşmacılarla tanışmak ve sektör profesyonelleriyle bağlantı kurmak için bu heyecan
verici etkinliği kaçırmayın.
</p>
</div>
<div
class="lg:mt-24 mt-10 flex lg:flex-row flex-col items-center gap-x-10 gap-y-3 max-w-[967px] mx-auto lg:px-0 px-2">
<div class="text-center">
<div class="text-base text-main-800">Tarih</div>
<div
class="mt-1 lg:text-2xl text-xl lg:leading-8 leading-6 text-main-900 font-medium tracking-primary">
13 Temmuz
</div>
</div>
<div class="lg:w-px w-full lg:h-[60px] h-px bg-sky-border-gradient"></div>
<div class="text-center">
<div class="text-base text-main-800">Mekan</div>
<div
class="mt-1 lg:text-2xl text-xl lg:leading-8 leading-6 text-main-900 font-medium tracking-primary underline">
Bahçeşehir Üniversitesi Beşiktaş Güney Kampüsü
</div>
<div class="mt-6 lg:mt-2.5 flex flex-col lg:flex-row items-center justify-center gap-x-4">
<img src="/images/bahcesehir.png" width="120" height="24" alt="">
<div class="text-main-900 tracking-primary text-[18px] line-height-[28px]">Bahçeşehir Üniversitesi Kuluçka Merkezi
BAU Hub işbirliğiyle
</div>
</div>
</div>
<div class="lg:w-px w-full lg:h-[60px] h-px bg-sky-border-gradient"></div>
<div class="text-center">
<div class="text-base text-main-800">Şehir</div>
<div
class="mt-1 lg:text-2xl text-xl lg:leading-8 leading-6 text-main-900 font-medium tracking-primary">
İstanbul
</div>
</div>
</div>
</div>
</div>
<!-- SPEAKERS -->
<div class="relative lg:mt-12 mt-20 section-container">
<div id="konuşmacılar"></div>
<div class="relative z-10 lg:px-10 px-6 lg:pb-10 pb-6 border border-sup-700 rounded-3xl"
style="background: linear-gradient(180deg, #121723 42.71%, #18223A 100%);">
<div class="relative z-10 max-w-[1134px] mx-auto">
<img src="/images/speakers-top.png" class="lg:block hidden absolute -top-[26px] w-full" alt="">
<img src="/images/mobile-speakers-top.png" class="lg:hidden block absolute -top-[26px] w-full"
alt="">
<img src="/images/speakers-top-gradient.png"
class="lg:block hidden absolute z-10 top-0 left-1/2 transform -translate-x-1/2 mix-blend-color-dodge"
alt="">
<img src="/images/mobile-speakers-top-gradient.png"
class="lg:hidden block absolute z-10 top-0 left-1/2 transform -translate-x-1/2 w-full mix-blend-color-dodge"
alt="">
<img src="/images/speakers-lines.png" class="absolute left-1/2 transform -translate-x-1/2 h-full"
alt="">
<div class="bg-mid-900 rounded-b-xl lg:pt-20 pt-10 lg:pb-24 pb-14 lg:px-16">
<div class="relative z-10 max-w-[384px] mx-auto lg:px-0 px-4">
<h2 class="text-main-0 text-center">Konuşmacılar</h2>
<p class="mt-3 lg:text-xl text-base text-main-700 text-center tracking-secondary">İlham verici
konuşmacılar ve sektör profesyonelleriyle tanışın</p>
</div>
<div
class="lg:mt-16 mt-6 flex flex-wrap lg:justify-start justify-center md:gap-x-6 md:gap-y-12 gap-y-4">
<div class="speaker-card" v-for="speaker in findSpeakers()">
<div class="relative group rounded-lg overflow-hidden lg:px-0 px-3">
<img :src="speaker.avatar" class="lazy" alt="{{ speaker.name }}">
<div
class="social-box opacity-0 group-hover:opacity-100 invisible group-hover:visible">
<a :href="speaker.social_networks.twitter" target="_blank">
<img src="/icons/twitter-icon.svg" class="lazy" alt="">
</a>
<a :href="speaker.social_networks.linkedin" target="_blank">
<img src="/icons/linkedin-icon.svg" class="lazy" alt="">
</a>
</div>
</div>
<h3 class="title">{{ speaker.name }}</h3>
<p class="desc">{{ speaker.bio }}</p>
</div>
</div>
</div>
</div>
<img src="/images/speakers-bottom-gradient.png"
class="lg:block hidden absolute z-0 bottom-0 left-1/2 transform -translate-x-1/2 lazy mix-blend-color-dodge"
alt="">
</div>
</div>
<!-- SCHEDULE -->
<div class="section-container lg:mt-[120px] mt-20 lg:mx-auto -mx-4">
<div id="program"></div>
<h2 class="lg:text-left text-center">Etkinlik Programı</h2>
<div class="lg:mt-10 mt-8">
<div class="flex items-center gap-x-8 lg:justify-end w-full overflow-x-auto lg:px-0 px-4">
<div class="schedule-title">Fazıl Say Salonu</div>
<div class="schedule-title">B Salonu</div>
</div>
<div class="lg:hidden block mt-6">
<div class="flex overflow-x-auto px-4">
<div class="flex gap-x-6 bg-sea-50 rounded-2xl p-4 flex-shrink-0">
<div v-for="(track, trackIndex) in tracks" :key="`track-${trackIndex}`"
class="space-y-4 max-w-[310px]">
<div v-for="(session, sessionIndex) in track.sessions.slice(0,5)"
:key="`track-${trackIndex}-${sessionIndex}`">
<div class="schedule-time">{{session.start}} - {{session.end}}</div>
<div v-for="(talk, talkIndex) in session.talks"
:key="`track-${trackIndex}-${sessionIndex}-${talkIndex}`" class="schedule-card">
<div class="title">
{{talk.title}}
</div>
<div v-if="talk.speakers.length > 0" class="speaker-box px-8">
<img :src="getSpeaker(talk.speakers[0]).avatar" class="avatar lazy" alt="">
<div>
<span class="font-medium">{{getSpeaker(talk.speakers[0]).name}}</span>
({{getSpeaker(talk.speakers[0]).title}})
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 flex justify-center">
<a href="schedule.html" class="flex items-center gap-x-2">
<span class="text-base text-main-900 font-medium tracking-secondary">Devamını Gör</span>
<img src="/icons/arrow-down-icon.svg" class="lazy" alt="">
</a>
</div>
</div>
<div class="mt-6 lg:flex hidden">
<div class="flex-1">
<div class="relative bg-sea-50 rounded-2xl p-4 ">
<img src="/images/schedule-gradient.png"
class="absolute top-0 right-0 lazy mix-blend-color-dodge" alt="">
<div class="relative z-10 grid grid-cols-12 gap-4">
<div v-for="(session, sessionIndex) in sessions.slice(0,5)" :key="`talk-${sessionIndex}`"
class="relative col-span-12 grid grid-cols-12 gap-4">
<div class="h-full flex items-center absolute schedule-time-box">
<div class="schedule-time">
{{session.start}} - {{session.end}}
</div>
</div>
<div v-for="(talk, talkIndex) in session.talks"
:key="`talk-${sessionIndex}-${talkIndex}`" class="schedule-card row-span-1"
:class="{'col-span-6': session.talks.length === 2, 'col-span-12': session.talks.length === 1}">
<div class="title">
{{talk.title}}
</div>
<div v-if="talk.speakers.length > 0" class="speaker-box">
<img :src="getSpeaker(talk.speakers[0]).avatar" class="avatar lazy" alt="">
<div>
<span class="font-medium">{{getSpeaker(talk.speakers[0]).name}}</span>
({{getSpeaker(talk.speakers[0]).title}})
</div>
</div>
</div>
</div>
<div class="absolute left-0 right-0 bottom-0 w-full h-[160px]"
style="background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);">
</div>
</div>
</div>
<div class="mt-6 flex justify-center">
<a href="schedule.html" class="flex items-center gap-x-2">
<span class="text-base text-main-900 font-medium tracking-secondary">Devamını Gör</span>
<img src="/icons/arrow-down-icon.svg" class="lazy" alt="">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- TICKETS -->
<div class="mt-[120px]">
<div id="biletler"></div>
<div class="max-w-[384px] mx-auto lg:px-0 px-10">
<h2 class="text-center">Biletler</h2>
<p class="lg:mt-3 mt-4 lg:text-xl text-base text-main-700 text-center tracking-secondary">Tüm konferans
oturumlarına katılım için geçerli</p>
</div>
<div class="lg:mt-10 mt-8">
<img src="/images/tickets-top.png" class="lg:block hidden mx-auto lazy" alt="">
<div class="relative bg-mid-900 rounded-2xl max-w-[800px] mx-auto">
<img src="/images/tickets-gradient.png"
class="lg:block hidden absolute left-0 lazy mix-blend-color-dodge" alt="">
<img src="/images/mobile-tickets-gradient.png"
class="lg:hidden block absolute -top-4 -left-4 lazy mix-blend-color-dodge" alt="">
<div class="relative z-10 lg:p-10 p-8 flex lg:flex-row flex-col items-center gap-x-12">
<div class="lg:max-w-[200px] w-full">
<div class="lg:text-base text-sm text-[#00C4E4] font-medium tracking-secondary"></div>
<div
class="lg:text-5xl text-2xl lg:leading-[60px] text-main-0 lg:font-semibold font-medium lg:tracking-secondary tracking-primary">
750 TL
</div>
<a href="https://kommunity.com/saastanbul/events/saastanbul-2023-101374c0/tickets" target=""
class="mt-5 lg:block hidden bg-main-0 rounded-lg py-2 text-base text-main-900 text-center font-medium tracking-primary"
style="box-shadow: 0px 1px 3px rgba(238, 255, 254, 0.25), 0px 0.5px 0.5px rgba(238, 255, 254, 0.25), inset 0px 0.5px 0.5px #EEFFFE, inset 0px 0.5px 0.5px #EEFFFE;">
Bilet satışı bitmiştir
</a>
</div>
<ul
class="lg:mt-0 mt-4 lg:text-base text-xs text-main-700 lg:tracking-primary tracking-secondary space-y-3">
<li class="flex items-center gap-x-3">
<span class="h-1.5 w-1.5 rounded-full bg-azul-100"></span>
<span class="flex-1">3 Temmuz tarihine kadar geçerli özel fiyattır</span>
</li>
<li class="flex items-center gap-x-3">
<span class="h-1.5 w-1.5 rounded-full bg-azul-100"></span>
<span class="flex-1">Tüm oturumlara katılım hakkı</span>
</li>
<li class="flex items-center gap-x-3">
<span class="h-1.5 w-1.5 rounded-full bg-azul-100"></span>
<span class="flex-1">Fuar alanına erişim</span>
</li>
<li class="flex items-center gap-x-3">
<span class="h-1.5 w-1.5 rounded-full bg-azul-100"></span>
<span class="flex-1">Networking etkinliklerine katılım</span>
</li>
<li class="flex items-center gap-x-3">
<span class="h-1.5 w-1.5 rounded-full bg-azul-100"></span>
<span class="flex-1">Kommunity ABD merkezli bir şirket olduğundan KDV %0'dır ve yurtdışı alındı makbuzu verilecektir</span>
</li>
</ul>
<a href="https://kommunity.com/saastanbul/events/saastanbul-2023-101374c0/tickets"
class="mt-6 lg:hidden block w-full bg-main-0 rounded-lg py-2 text-base text-main-900 text-center font-medium tracking-primary"
style="box-shadow: 0px 1px 3px rgba(238, 255, 254, 0.25), 0px 0.5px 0.5px rgba(238, 255, 254, 0.25), inset 0px 0.5px 0.5px #EEFFFE, inset 0px 0.5px 0.5px #EEFFFE;">
Satın al
</a>
</div>
</div>
<img src="/images/tickets-bottom.png" class="lg:block hidden mx-auto -mt-3 lazy" alt="">
</div>
</div>
<!-- TWEETS -->
<div style="display: none;"
class="lg:mt-[144px] mt-[120px] section-container relative rounded-3xl bg-[#F7F9FC] border border-azul-100 lg:pl-20 lg:pr-16 lg:py-0 p-8 overflow-hidden"
style="box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06);">
<img src="/images/tweets-bg.png" class="lg:block hidden absolute left-0 bottom-0 lazy" alt="">
<img src="/images/mobile-tweets-bg.png" class="lg:hidden block absolute left-0 top-4 lazy" alt="">
<div class="relative z-10 flex lg:flex-row flex-col items-center lg:gap-x-14">
<div class="lg:max-w-[304px] w-full">
<h2>Hashtag #saastanbul23</h2>
<p class="lg:mt-4 mt-2 lg:text-xl text-base text-main-800 tracking-secondary">
Twitter’da <span class="text-azul-600 font-medium">#saastanbul23</span> etiketiyle paylaşım
yapabilir, etkinlik hallerinizi paylaşabilirsiniz.
</p>
<a href="http://twitter.com/" target="_blank"
class="inline-block mt-6 text-base text-main-0 font-medium tracking-primary py-2 px-4 rounded-lg border border-sea-200"
style="background: linear-gradient(90deg, #55ACEE 0%, #7DC7FF 100%);box-shadow: 0px 1px 3px rgba(238, 255, 254, 0.25), 0px 0.5px 0.5px rgba(238, 255, 254, 0.25);">
Tweetle
</a>
</div>
<div class="lg:flex hidden gap-x-6">
<div class="space-y-6 lg:max-h-[340px] overflow-auto">
<div v-for="(tweet, tweetIndex) in tweets[0]" :key="`tweets-1-${tweetIndex}`" class="tweet-card">
<div class="flex justify-between gap-x-3">
<div class="flex items-center gap-x-3">
<img :src="tweet.avatar" class="h-10 w-10 rounded-full lazy" alt="">
<div class="text-[#383A3D]">
<div class="text-base font-medium">{{tweet.name}}</div>
<div class="text-xs">@{{tweet.username}}</div>
</div>
</div>
<img src="/icons/twiter-blue-icon.svg" class="lazy" alt="">
</div>
<p class="mt-3 text-sm text-main-800">
{{tweet.content}}
</p>
<div class="mt-3 text-xs text-[#6A6B6E]">
{{tweet.time}}
</div>
</div>
</div>
<div class="space-y-6 lg:max-h-[340px] overflow-auto">
<div v-for="(tweet, tweetIndex) in tweets[1]" :key="`tweets-1-${tweetIndex}`" class="tweet-card">
<div class="flex justify-between gap-x-3">
<div class="flex items-center gap-x-3">
<img :src="tweet.avatar" class="h-10 w-10 rounded-full lazy" alt="">
<div class="text-[#383A3D]">
<div class="text-base font-medium">{{tweet.name}}</div>
<div class="text-xs">@{{tweet.username}}</div>
</div>
</div>
<img src="/icons/twiter-blue-icon.svg" class="lazy" alt="">
</div>
<p class="mt-3 text-sm text-main-800">
{{tweet.content}}
</p>
<div class="mt-3 text-xs text-[#6A6B6E]">
{{tweet.time}}
</div>
</div>
</div>
</div>
<div class="mt-8 lg:hidden flex gap-x-4 overflow-x-auto">
<div v-for="(tweet, tweetIndex) in tweets[0]" :key="`tweets-m-${tweetIndex}`" class="tweet-card">
<div class="flex justify-between gap-x-3">
<div class="flex items-center gap-x-3">
<img :src="tweet.avatar" class="h-10 w-10 rounded-full lazy" alt="">
<div class="text-[#383A3D]">
<div class="text-base font-medium">{{tweet.name}}</div>
<div class="text-xs">@{{tweet.username}}</div>
</div>
</div>
<img src="/icons/twiter-blue-icon.svg" class="lazy" alt="">
</div>
<p class="mt-3 text-sm text-main-800">
{{tweet.content}}
</p>
<div class="mt-3 text-xs text-[#6A6B6E]">
{{tweet.time}}
</div>
</div>
</div>
</div>
<div class="lg:block hidden absolute z-50 top-0 left-0 right-0 h-14 w-full"
style="background: linear-gradient(180deg, #F7F9FC 0%, rgba(247, 249, 252, 0) 100%);"></div>
<div class="lg:block hidden absolute z-50 bottom-0 left-0 right-0 h-14 w-full"
style="background: linear-gradient(0deg, #F7F9FC 0%, rgba(247, 249, 252, 0) 100%);"></div>
</div>
<!-- SPONSORS -->
<div class="mt-[120px] section-container">
<div id="sponsorlar"></div>
<div class="relative z-10 lg:p-10 lg:pb-0 p-8 pb-0 border border-sup-700 rounded-3xl overflow-hidden"
style="background: linear-gradient(180deg, #101420 42.71%, #18223A 100%);box-shadow: 0px 12px 16px -4px rgba(0, 85, 255, 0.08), 0px 4px 6px -2px rgba(0, 85, 255, 0.03), 0px 1px 2px rgba(16, 24, 40, 0.06);">
<img src="/images/sponsors-first-top-gradient.png"
class="lg:block hidden absolute z-10 top-0 left-1/2 transform -translate-x-1/2 lazy mix-blend-color-dodge"
alt="">
<img src="/images/mobile-sponsors-first-top-gradient.png"
class="lg:hidden block absolute z-10 top-0 left-1/2 transform -translate-x-1/2 lazy mix-blend-color-dodge"
alt="">
<div class="relative z-10 max-w-[1134px] mx-auto rounded-t-xl overflow-hidden">
<img src="/images/sponsors-top-gradient.png"
class="lg:block hidden absolute z-50 top-0 left-1/2 transform -translate-x-1/2 w-full lazy mix-blend-color-dodge"
alt="">
<img src="/images/mobile-sponsors-top-gradient.png"
class="lg:hidden block absolute z-50 top-0 left-1/2 transform -translate-x-1/2 w-full lazy mix-blend-color-dodge"
alt="">
<img src="/images/speakers-lines.png"
class="absolute left-1/2 transform -translate-x-1/2 h-full lazy" alt="">
<img src="/images/sponsors-bottom-gradient.png"
class="lg:block hidden absolute bottom-0 left-1/2 transform -translate-x-1/2 lazy mix-blend-color-dodge"
alt="">
<div
class="relative bg-mid-900 lg:pt-20 lg:pb-24 lg:px-16 pt-10 pb-6 gradient-border overflow-hidden">
<img src="/images/sponsors-gradient.png"
class="lg:block hidden absolute top-0 left-0 z-0 mix-blend-color-dodge" alt="">
<div class="relative z-50">
<div class="lg:px-0 px-4 max-w-[592px] mx-auto">
<h2 class="text-main-0 text-center">Sponsorlar</h2>
<p
class="mt-5 lg:text-xl text-base lg:text-main-0 text-main-700 text-center lg:tracking-secondary tracking-primary">
SaaStanbul 2023’e sponsor olmak için <br> <a href="to:[email protected]"
class="text-azul-500">[email protected]</a>
adresinden iletişime geçebilirsiniz.
</p>
</div>
<div class="relative lg:mt-20 mt-14 lg:px-0 px-5">
<img src="/images/mobile-sponsors-gradient1.png"
class="lg:hidden block absolute left-0 -top-24 w-full mix-blend-color-dodge" alt="">
<div class="relative z-10">
<h3 class="text-xl text-sea-100 font-medium text-center">Elmas Sponsorlar</h3>
<div class="lg:mt-6 mt-4 grid lg:grid-cols-3 grid-cols-1 gap-x-6 gap-y-4">
<a v-for="(sponsor, sponsorIndex) in sponsors.filter(s => s.category === 'Elmas')"
:key="`sponsor-${sponsor.id}`"
class="sponsor-card bg-white px-3 py-8" :href="sponsor.link"
target="_blank"
:title="sponsor.name">
<img :src="sponsor.logo" class="lazy max-h-[80px] w-auto " alt="">
</a>
</div>
</div>
</div>
<div class="relative lg:mt-20 mt-10 lg:px-0 px-6">
<img src="/images/mobile-sponsors-gradient2.png"
class="lg:hidden block absolute left-0 -top-24 w-full mix-blend-color-dodge" alt="">
<div class="relative z-10">
<h3 class="text-xl text-sea-100 font-medium text-center">Platin Sponsorlar</h3>
<div class="lg:mt-6 mt-5 grid lg:grid-cols-4 grid-col-1 gap-x-6 gap-y-4">
<a v-for="(sponsor, sponsorIndex) in sponsors.filter(s => s.category === 'Platin')"
:key="`sponsor-${sponsor.id}`"
class="sponsor-card bg-white px-3 py-6"
:href="sponsor.link"
target="_blank"
:title="sponsor.name">
<img :src="sponsor.logo" class="lazy max-h-[74px] w-auto " alt="">
</a>
</div>
</div>
</div>
<div class="relative lg:mt-20 mt-14 lg:px-0 px-5">
<img src="/images/mobile-sponsors-gradient1.png"
class="lg:hidden block absolute left-0 -top-24 w-full mix-blend-color-dodge" alt="">
<div class="relative z-10">
<h3 class="text-xl text-sea-100 font-medium text-center">Altın Sponsorlar</h3>
<div class="lg:mt-6 mt-4 grid lg:grid-cols-5 grid-cols-1 gap-x-6 gap-y-4">
<a v-for="(sponsor, sponsorIndex) in sponsors.filter(s => s.category === 'Altın')"
:key="`sponsor-${sponsor.id}`"
class="sponsor-card bg-white px-2 py-4" :href="sponsor.link"
target="_blank"
:title="sponsor.name">
<img :src="sponsor.logo" class="lazy max-h-[68px] w-auto " alt="">
</a>
</div>
</div>
</div>
<!--<div class="relative lg:mt-20 mt-10 lg:px-0 px-6">
<img src="/images/mobile-sponsors-gradient3.png"
class="lg:hidden block absolute left-0 -top-24 w-full mix-blend-color-dodge" alt="">
<div class="relative z-10">
<h3 class="text-xl text-sea-100 font-medium text-center">Gümüş Sponsorlar</h3>
<div class="lg:mt-6 mt-4 grid lg:grid-cols-3 grid-cols-1 gap-x-6 gap-y-4">
<a v-for="(sponsor, sponsorIndex) in sponsors.filter(s => s.category === 'Gümüş')"
:key="`sponsor-${sponsor.id}`"
class="sponsor-card bg-white px-3" :href="sponsor.link"
target="_blank"
:title="sponsor.name">
<img :src="sponsor.logo" class="lazy max-h-[80px] w-auto " alt="">
</a>
</div>
</div>
</div>-->
<div class="relative lg:mt-20 mt-10 lg:px-0 px-6">
<img src="/images/mobile-sponsors-gradient3.png"
class="lg:hidden block absolute left-0 -top-24 w-full mix-blend-color-dodge" alt="">
<div class="relative z-10">
<h3 class="text-xl text-sea-100 font-medium text-center">Tanıtım Sponsorları</h3>
<div class="lg:mt-6 mt-4 grid lg:grid-cols-6 grid-cols-1 gap-x-6 gap-y-4">
<a v-for="(sponsor, sponsorIndex) in sponsors.filter(s => s.category === 'Tanıtım')"
:key="`sponsor-${sponsor.id}`"
class="sponsor-card bg-white px-1 py-4" :href="sponsor.link"
target="_blank"
:title="sponsor.name">
<img :src="sponsor.logo" class="lazy max-h-[62px] w-auto " alt="">
</a>
</div>
</div>
</div>
<div class="relative lg:mt-20 mt-10 lg:px-0 px-6">
<img src="/images/mobile-sponsors-gradient3.png"
class="lg:hidden block absolute left-0 -top-24 w-full mix-blend-color-dodge" alt="">
<div class="relative z-10">
<h3 class="text-xl text-sea-100 font-medium text-center">Altyapı Sponsorları</h3>
<div class="lg:mt-6 mt-4 grid lg:grid-cols-6 grid-cols-1 gap-x-6 gap-y-4">
<a v-for="(sponsor, sponsorIndex) in sponsors.filter(s => s.category === 'Altyapı')"
:key="`sponsor-${sponsor.id}`"
class="sponsor-card bg-white px-1 py-4" :href="sponsor.link"
target="_blank"
:title="sponsor.name">
<img :src="sponsor.logo" class="lazy max-h-[56px] w-auto " alt="">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- F.A.Q. -->
<div class="mt-[120px] max-w-[1008px] mx-auto">
<div id="sss"></div>
<h2 class="text-center">Sıkça Sorulan Sorular</h2>
<p
class="lg:mt-5 mt-4 lg:text-xl text-base text-main-800 text-center lg:tracking-secondary tracking-primary">
SaaStanbul2023 ile ilgili merak ettiğiniz soruların cevaplarına ulaşabilirsiniz.
</p>
<div class="lg:mt-12 mt-10 py-2 rounded-2xl border border-grey-100 divide-y divide-grey-100"
style="box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06);">
<div class="faq-item" @click="activeFaqItemIndex = 0" :class="{active: activeFaqItemIndex === 0}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinlik tarihi ve yeri nedir?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Etkinlik, 13 Temmuz 2023 tarihinde Bahçeşehir Üniversitesi Beşiktaş Güney Kampüsü'nde
düzenlenecektir. Etkinlik girişi ana kapıdan olacaktır.
</p>
</div>
<div class="faq-item" @click="activeFaqItemIndex = 1" :class="{active: activeFaqItemIndex === 1}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinliğin teması veya odak noktası nedir?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Etkinlik, SaaS odağında olmak üzere SEO, büyüme, satış, girişim stüdyoları, şirket kurulumu,
veri analitiği, ürün yönetimi, şirket kurulumu ve ürünleştirme konularını kapsar.
</p>
</div>
<div class="faq-item" @click="activeFaqItemIndex = 2" :class="{active: activeFaqItemIndex === 2}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinlik fiziksel mi yoksa sanal mı gerçekleştirilecek?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Etkinlik fiziksel olacaktır.
</p>
</div>
<div class="faq-item" @click="activeFaqItemIndex = 3" :class="{active: activeFaqItemIndex === 3}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinliğe nasıl kayıt olabilirim ve fatura kesilecek mi?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Biletleri ana sayfadaki bağlantıyı takip ederek satın alabilirsiniz. Etkinlik günü girişte yaka
kartınız temin edilecektir. Biletler Kommunity tarafından kesilecek, ve Kommunity ABD merkezli
bir şirket olduğu için e-mail adresinize iletilen faturalara %0 KDV yansıyacaktır. Satın alınan
biletler için yerel bir firmadan fatura kesimi yapılmayacaktır.
</p>
</div>
<!-- <div class="faq-item" @click="activeFaqItemIndex = 4" :class="{active: activeFaqItemIndex === 4}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinlik mekanında otopark var mı? </h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Evet, aracınızı üniversitenin otoparkına park edebilirsiniz. Otopark için ücret alınabilir.
</p>
</div> -->
<div class="faq-item" @click="activeFaqItemIndex = 5" :class="{active: activeFaqItemIndex === 5}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinlik alanına toplu taşıma ile nasıl ulaşabilirim?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
<a
href="https://moovitapp.com/index/tr/toplu_ta%C5%9F%C4%B1ma-Bah%C3%A7e%C5%9Fehir_%C3%9Cniversitesi_Otopark-Istanbul-site_35018293-1563">Bu
bağlantıdan</a> bilgi alabilirsiniz.
</p>
</div>
<div class="faq-item" @click="activeFaqItemIndex = 6" :class="{active: activeFaqItemIndex === 6}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinlik süresince yiyecek ve içecek sağlanacak mı?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Etkinlik sırasında ücretsiz içecek sağlanacaktır. Etkinlik aralarında yakındaki cafe ve mekanlardan yiyecek temini de yapılabilir.
</p>
</div>
<div class="faq-item" @click="activeFaqItemIndex = 7" :class="{active: activeFaqItemIndex === 7}">
<div class="flex items-center justify-between gap-x-4">
<h3 class="title">Etkinlik düzenleyicilerine nasıl ulaşabilirim?</h3>
<img src="/icons/chevron-down.svg" class="icon lazy" alt="">
</div>
<p class="desc">
Etkinlik düzenleyicilerine ulaşmak için <a
href="mailto:[email protected]">[email protected]</a> adresini kullanabilirsiniz.
</p>
</div>
</div>
</div>
<!-- ORGANIZERS -->
<div class="relative mt-[120px] section-container">
<div id="organizatörler"></div>
<div class="relative z-10 lg:px-10 px-6 lg:pb-10 pb-6 border border-sup-700 rounded-3xl"
style="background: linear-gradient(180deg, #121723 42.71%, #18223A 100%);">
<div class="relative z-10 max-w-[1134px] mx-auto">
<img src="/images/organizers-top-gradient.png"
class="lg:block hidden absolute z-10 top-0 left-1/2 transform -translate-x-1/2 lazy mix-blend-color-dodge"
alt="">
<img src="/images/mobile-speakers-top-gradient.png"
class="lg:hidden block absolute z-10 top-0 left-1/2 transform -translate-x-1/2 w-full lazy mix-blend-color-dodge"
alt="">
<img src="/images/speakers-lines.png"
class="absolute left-1/2 transform -translate-x-1/2 h-full lazy" alt="">
<div class="bg-mid-900 rounded-b-xl lg:pt-20 pt-10 lg:pb-24 pb-14 lg:px-16">
<div class="relative z-10 max-w-[384px] mx-auto lg:px-0 px-4">
<h2 class="text-main-0 text-center">Organizatörler</h2>
</div>
<div
class="lg:mt-16 mt-6 flex flex-wrap justify-center md:gap-x-6 md:gap-y-12 gap-y-4">
<div class="organizer-card">
<div class="relative group rounded-lg overflow-hidden lg:px-0 px-3">
<img src="/images/organizers/Görkem Çetin.png" class="avatar lazy" alt="">
</div>
<div class="max-w-[140px] mx-auto">
<h3 class="title">Görkem Çetin</h3>
</div>
</div>
<div class="organizer-card">
<div class="relative group rounded-lg overflow-hidden lg:px-0 px-3">
<img src="/images/organizers/Merve Karaca.png" class="avatar lazy" alt="">
</div>
<div class="max-w-[140px] mx-auto">
<h3 class="title">Merve Karaca</h3>
</div>
</div>
<div class="organizer-card">
<div class="relative group rounded-lg overflow-hidden lg:px-0 px-3">
<img src="/images/organizers/Orhan Bayram.png" class="avatar lazy" alt="">
</div>
<div class="max-w-[140px] mx-auto">
<h3 class="title">Orhan Bayram</h3>
</div>
</div>
<div class="organizer-card">
<div class="relative group rounded-lg overflow-hidden lg:px-0 px-3">
<img src="/images/organizers/Sena İkiz.png" class="avatar lazy" alt="">