-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1293 lines (1147 loc) · 66.9 KB
/
index.html
File metadata and controls
1293 lines (1147 loc) · 66.9 KB
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 data-wf-domain="www.designunlimited.studio" data-wf-page="642c22cbffd9a0fb34e28bdb"
data-wf-site="642c22cbffd9a014d7e28bda">
<head>
<meta charset="utf-8" />
<title>Mozilla Firefox Club</title>
<meta
content="Mozilla Firefox Club-VIT is the club for Mozilla Firefox open-source community enthusiasts at VIT University, Vellore, to promote Web development and Open Source Technologies in the University."
name="description" />
<meta content="Mozilla Firefox Club" property="og:title" />
<meta
content="Mozilla Firefox Club-VIT is the club for Mozilla Firefox open-source community enthusiasts at VIT University, Vellore, to promote Web development and Open Source Technologies in the University."
property="og:description" />
<meta content="" property="og:image" />
<meta content="Mozilla Firefox Club" property="twitter:title" />
<meta
content="Mozilla Firefox Club-VIT is the club for Mozilla Firefox open-source community enthusiasts at VIT University, Vellore, to promote Web development and Open Source Technologies in the University."
property="twitter:description" />
<meta content="" property="twitter:image" />
<meta property="og:type" content="website" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="stylesheet" href="swiper-bundle.min.css">
<link rel="stylesheet" href="swiper-bundle.min.css">
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="facultyCard.css">
<!-- <style>@media (min-width:992px) {html.w-mod-js:not(.w-mod-ix) [data-w-id="3af9ea9d-686f-9111-39c5-d5dcef528f11"] {opacity:0;}html.w-mod-js:not(.w-mod-ix) [data-w-id="1f82f6d6-6cc8-110c-6663-4bfd30ed094b"] {opacity:0;}}@media (max-width:991px) and (min-width:768px) {html.w-mod-js:not(.w-mod-ix) [data-w-id="3af9ea9d-686f-9111-39c5-d5dcef528f11"] {opacity:0;}html.w-mod-js:not(.w-mod-ix) [data-w-id="1f82f6d6-6cc8-110c-6663-4bfd30ed094b"] {opacity:0;}}</style> -->
<link href="https://fonts.googleapis.com/" rel="preconnect" />
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin="anonymous" />
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Material Icons:regular"] } });</script>
<script
type="text/javascript">!function (o, c) { var n = c.documentElement, t = " w-mod-"; n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch") }(window, document);</script>
<link rel="icon" href="/img/logo.jpeg" type="image/icon">
<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=Abhaya+Libre&family=DM+Sans:opsz,wght@9..40,100&family=Italiana&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/532dca04a1.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/protonet-jquery.inview/1.1.2/jquery.inview.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="https://kit.fontawesome.com/77dc8f63a6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<style>
#particles-js {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.grain-container {
background-color: #0d0a12;
}
</style>
<style>
.grain-container {
position: fixed !important;
}
.nav-hover {
position: absolute;
transition: all 200ms ease;
pointer-events: none;
opacity: 0;
transform: translate(-50%, -50%);
}
.splide__track {
overflow: visible;
}
.radial-gradient {
position: absolute;
width: 100%;
height: 100%;
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
filter: blur(50px);
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease;
}
.itemcontainer:hover .radial-gradient {
opacity: 0.7;
}
.logowrapper {
padding-left: 40px;
padding-right: 40px;
text-align: center;
}
.sectionsmallheaders {
font-size: 24px;
color: white;
}
.center-vertically {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.circular-image {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
}
.circular-image img {
width: 100%;
height: auto;
}
</style>
</style>
<style>
#grain {
pointer-events: none
}
</style>
</head>
<style>
.preloader {
position: fixed;
top: 19%;
left: 25%;
width: 50%;
height: 50%;
z-index: -2;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.progress {
height: 5px;
background: #222;
width: 0%;
transition: width 0.5s linear;
}
.progress-bar {
height: 100%;
background: orange;
width: 0%;
}
.preloader-image {
animation: pulse 2s linear infinite;
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
opacity: 0.5;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
</style>
<style>
.swiper {
overflow: visible !important;
}
.swiper-button-next,
.swiper-button-prev {
color: #ff5722;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
color: #ff9800;
}
.swiper-button-next {
right: -20px !important;
}
.swiper-button-prev {
left: -20px !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
font-size: 30px;
}
.swiper-button-next,
.swiper-button-prev {
transition: color 0.3s ease, transform 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
transform: translateY(-50%) scale(1.2);
}
.swiper-pagination-bullet {
background-color: #ff5722;
opacity: 1;
}
.swiper-pagination-bullet-active {
background-color: #ff9800;
}
.swiper-pagination-bullet:hover {
transform: scale(1.2);
background-color: #ffcc00;
}
</style>
<body class="body">
<div id="particles-js"></div>
<div class="preloader">
<div class="progress">
<div class="progress-bar"></div>
</div>
<img src="img/fox.png" class="preloader-image">
</div>
<div class="other-content">
<div class="headerfixed">
<div class="header hide">
<div class="logo">
<div class="logogradientavatar">
<div class="innercircle">
<div class="innerimage"></div>
</div>
</div>
<div id="Home" class="logotext">
<h1 class="logo-heading">MOZILLA FIREFOX CLUB</h1>
<p class="smalllogotext">Open-source community enthusiasts</p>
</div>
</div>
<nav class="nav">
<a href="#Home"><img src="img/finallogo.png" alt="Logo" class="nav-logo"></a>
<span class="logo-text"></span>
<div class="nav-hover"></div>
<a href="#Domain" class="navitem">Domains</a>
<a href="#Event" class="navitem">Events</a>
<a href="#Aim" class="navitem">Our Aim</a>
<a href="#Blog" class="navitem">Blog</a>
<a href="#Board" class="navitem">Board</a>
</nav>
</div>
</div>
<div class="mobile-nav-menu-icon flex">
<img src="img/menu.png" alt="menu" class="menu-icon-img remove-def">
<img src="img/finallogo.png" alt="Logo" class="nav-logo remove-def">
</div>
<nav class="mobile-nav">
<a href="#Aim" class="mobile-navitem remove-def">Our Aim</a>
<a href="#Domain" class="mobile-navitem remove-def">Domains</a>
<a href="#Event" class="mobile-navitem remove-def">Events</a>
<a href="#Blog" class="mobile-navitem remove-def">Blog</a>
<a href="#Board" class="mobile-navitem remove-def">Board</a>
</nav>
<div class="section header">
<!-- Added fox image container -->
<div class="fox-image-container">
<img src="img/fox.png" class="fox-image">
</div>
<div data-w-id="3af9ea9d-686f-9111-39c5-d5dcef528f11" class="eclipse hide"></div>
<div class="wrapper">
<div class="unlimitedsupporttitle">
<div class="maintitle">
<h1 class="heading-2">MOZILLA FIREFOX CLUB</h1>
<p class="subheading">A student club in VIT Vellore</p>
</div>
<p class="paragraph intro">Mozilla Firefox Club-VIT is the club for Mozilla Firefox open-source
community enthusiasts at VIT University, Vellore, to promote Web development and Open Source
Technologies in the University.</p>
</div>
<h2 class="sectionnewheaders">About Us<br /></h2>
</div>
</div>
<div class="logowrapper">
<p class="paragraphdesign" style="align-items: center;">Mozilla Firefox Club VIT, one of the largest
developers' communities in VIT, Vellore has been working with an aspiration of changing ideas into
reality ever since its inception. With a 6 year rich history as one of the top technical clubs
comprising a team of over 150+ core members, 3 mentors, and 10 as the executive board, dedicated to
technically strengthening the students by integrating their skills in various fields of Engineering &
Technology, so as to face the highly competitive environment. We provide a morale boosting system for
the talented youth through our professional endeavors and inspire each student at VIT and beyond to
follow our academic interests and goals. We have a diverse audience from over 15 countries as a part of
the students we teach. Creating value through real world impact-driven projects.</p>
</div>
<div id="Domain" class="section header">
<div class="container gallery bottomborder bottomnone topbordernone">
<h2 class="sectionnewheaders">Our Domains<br /></h2>
<p class="paragraphdesign">We believe in hands on learning and freedom of work. Hence all of our core
committee members are provided with selection of five domains to find where their true passion
lies..
</p>
<div class="benefitscontainer spacetop">
<div class="itemcontainer2 aligntop borderbottomnew domain-card">
<div class="iconcontainer">
<div class="circular-image">
<img src="img/technical.png" loading="lazy" alt="" class="iconbenefit" />
</div>
<div class="eclipse iconback"></div>
</div>
<div class="benefitscontentright">
<div class="center-vertically">
<h3 class="heading-3">Technical</h3>
<p class="paragraphdesign domain-desc">
This domain provides students with a platform where they are encouraged to discover,
explore and learn more about technology.
<br />
</p>
</div>
</div>
<div class="line poistionsmallboxes"></div>
<div class="eclipse benefitseclipse"></div>
</div>
<div class="itemcontainer2 aligntop borderbottomnew domain-card">
<div class="iconcontainer">
<div class="circular-image">
<img src="img/management.png" loading="lazy" alt="" class="iconbenefit" />
</div>
<div class="eclipse iconback"></div>
</div>
<div class="benefitscontentright">
<div class="center-vertically">
<h3 class="heading-3">Management</h3>
<p class="paragraphdesign domain-desc">The members of this domain specialize in
maintaining smooth and effective functioning of the club essentially maintaining the
cohesive working environment between the rest of the Domains</p>
</div>
</div>
<div class="line poistionsmallboxes"></div>
<div class="eclipse benefitseclipse"></div>
</div>
<div class="itemcontainer2 aligntop borderbottomnew domain-card">
<div class="iconcontainer">
<div class="circular-image">
<img src="img/design.png" loading="lazy" alt="" class="iconbenefit" />
</div>
<div class="eclipse iconback"></div>
</div>
<div class="benefitscontentright">
<div class="center-vertically">
<h3 class="heading-3">Design</h3>
<p class="paragraphdesign domain-desc">This domain promotes and instigates curiosity and
interest regarding graphics and media design and overall enriching the creativeness
of the club</p>
</div>
</div>
<div class="line poistionsmallboxes"></div>
<div class="eclipse benefitseclipse"></div>
</div>
<div class="itemcontainer2 aligntop borderbottomnew domain-card">
<div class="iconcontainer">
<div class="circular-image">
<img src="img/editorial.png" loading="lazy" alt="" class="iconbenefit" />
</div>
<div class="eclipse iconback"></div>
</div>
<div class="benefitscontentright">
<div class="center-vertically">
<h3 class="heading-3">Editorial</h3>
<p class="paragraphdesign domain-desc">This domain provides exclusive exposure to
students in developing intellectual writing capabilities and provides authentic
content for the club.</p>
</div>
</div>
<div class="line poistionsmallboxes"></div>
<div class="eclipse benefitseclipse"></div>
</div>
<div class="itemcontainer2 aligntop borderbottomnew domain-card">
<div class="iconcontainer">
<div class="circular-image">
<img src="img/media.png" loading="lazy" alt="" class="iconbenefit" />
</div>
<div class="eclipse iconback"></div>
</div>
<div class="benefitscontentright">
<div class="center-vertically">
<h3 class="heading-3">Media</h3>
<p class="paragraphdesign domain-desc">This group of students specialize in the digital
media world and explore their creativity in the various technical aspects of the
media world.
</p>
</div>
</div>
<div class="line poistionsmallboxes"></div>
<div class="eclipse benefitseclipse"></div>
</div>
</div>
<!-- Events -->
<div id="Event" class="section_header_eve">
<div class="contain_eve">
<h1 class="eve_head">Check out the Events at MFC</h1>
<p class="eve_para">
MFC VIT boasts a wide array of successful events conducted throughout
the year including speaker sessions with renowned technocrats,
competitive coding events, and many more.
</p>
</div>
</div>
<div class="section_evexx">
<div class="Event_body">
<div class="slide-container swiper">
<div class="slide-content">
<div id="eventCardsWrapper" class="EventXcard-wrapper swiper-wrapper""></div>
</div>
<div class="swiper-button-next swiper-navBtn"></div>
<div class="swiper-button-prev swiper-navBtn"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
<script>
const events = [
{
name: "TechWars",
description:
"Compete in a thrilling campus-wide WAR, where your team's strategy is the key to victory. Solve coding questions and conquer territories, play mini-games that offer offline power-ups, sharpening your skills while keeping the fun factor high.",
date: "28/09/24",
imgSrc: "img/techwars.png",
link: "https://github.com/MFC-VIT/TechWars-Frontend",
},
{
name: "Code to Survive",
description:
"Step into a world where code meets crime, and your wits are your only weapon. Code To Survive blends the thrill of an escape room, the intrigue of a murder mystery, and the strategy of a high-stakes criminal hunt—all in one three round immersive event.",
date: "27/09/24",
imgSrc: "img/code_to_survive.png",
link: "https://github.com/MFC-VIT/CTS-BE-24",
},
{
name: "Scavenger of the Year",
description:
"Embark on an exhilarating scavenger hunt filled with thrilling tasks and challenges! A handpicked list of objectives and riddles will propel your team into a race against time. Dive into side games to unlock exclusive powers that might tip the scales in your favor!",
date: "03/03/24",
imgSrc: "img/scavenger.png",
link: "https://github.com/MFC-VIT/SOTY-Backend-24",
},
{
name: "InnovationX",
description:
"The 36-hour hackathon by Mozilla Firefox Club and Advertisement and Marketing Club featured intense ideation, mentorship sessions, and project work, concluding with presentations from the top five teams and a celebratory closing.",
date: "18/03/24",
imgSrc: "img/innovationx.png",
link: "https://github.com/MFC-VIT/InnovationX-24",
},
{
name: "Cyber Security and Ethical Hacking",
description:
"The dynamic one-of-its-kind speaker session, featuring Mrs. Pooja V Joshi from EC-Council, focused on enhancing participants' understanding of privacy and cybersecurity.",
date: "13/03/24",
imgSrc: "img/cybersec.png",
link: "https://www.instagram.com/mfc_vit/",
},
{
name: "CodeCraft",
description:
"This interactive workshop is designed to introduce participants to the fundamentals of JavaScript and the Document Object Model (DOM). This event is tailored for beginners who want to enhance their web development skills by gaining a solid understanding of these core technologies.",
date: "07/03/24",
imgSrc: "img/codecraft.png",
link: "https://www.instagram.com/mfc_vit/",
},
{
name: "CloudForage",
description:
"CloudForage, led by cloud technology expert Mr. Balamurugan G, was an engaging offline session on AWS Cloud Computing. Concepts covered included AWS fundamentals, advanced cloud architecture, and best practices for building scalable, secure, and innovative projects—perfect for those looking to deepen their cloud expertise and stay ahead in tech!",
date: "13/08/24",
imgSrc: "img/cloudforage.png",
link: "https://www.instagram.com/mfc_vit/",
},
{
name: "WebWise",
description:
"Mozilla Firefox Club VIT Vellore brought web development skills to young minds at Williams School! In an interactive session, students explored website creation using HTML, CSS, and JavaScript. They also learned essential tips for securing their sites against common online threats, empowering them to build and protect their digital spaces.",
date: "09/11/24",
imgSrc: "img/webwise.png",
link: "https://www.instagram.com/mfc_vit/",
},
{
name: "Queue-rious Coders",
description:
"Queue up for Queue-rious Coders! This dynamic coding event invites participants of all levels to dive into the complexities of stack and queue data structures. Tackle real-world challenges designed to test and enhance your understanding of these essentials, boost your algorithmic skills, and compete for coding mastery!",
date: "24/10/24",
imgSrc: "img/queue_rious.png",
link: "https://www.instagram.com/mfc_vit/",
},
{
name: "Arena.exe",
description:
"Step into Arena.exe! Mozilla Firefox Club presents a thrilling event where participants dive into a game portal packed with challenges. Compete in strategic and skill-based games, connect with fellow gamers, and fight your way to the top!",
date: "08/11/24",
imgSrc: "img/arena.png",
link: "https://www.instagram.com/mfc_vit/",
},
{
name: "WebWhiz",
description:
"This event by Mozilla Firefox Club brought students together in a hands-on session on HTML and CSS, where participants dove into the essentials of web development by creating their own portfolio websites. This interactive workshop aimed to boost practical skills and inspire future web projects!",
date: "18/04/24",
imgSrc: "img/webwhiz.png",
link: "https://www.instagram.com/mfc_vit/",
},
];
function createEventCard(event) {
const card = document.createElement("div");
card.className = "EventXcard swiper-slide";
card.innerHTML = `
<a href="${event.link}" target="_blank" class="event-card-link">
<div class="image-content">
<span class="overlay"></span>
<div class="EventXcard-image">
<img src="${event.imgSrc}" alt="${event.name}" class="EventXcard-img">
</div>
</div>
<div class="EventXcard-content">
<h2 class="name" style="text-align: center;">${event.name}</h2>
<p class="description">${event.description}</p>
<div class="date">
<h3 class="date_in">DATE-</h3>
<p class="date_in_in">${event.date}</p>
</div>
</div>
</a>
`;
return card;
}
function renderEvents() {
const wrapper = document.getElementById("eventCardsWrapper");
events.forEach((event) => {
const eventCard = createEventCard(event);
wrapper.appendChild(eventCard);
});
}
function initializeSwiper() {
new Swiper(".swiper", {
slidesPerView: 1,
spaceBetween: 10,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
breakpoints: {
640: { slidesPerView: 2, spaceBetween: 20 },
768: { slidesPerView: 3, spaceBetween: 30 },
1024: { slidesPerView: 4, spaceBetween: 40 },
},
});
}
document.addEventListener("DOMContentLoaded", () => {
renderEvents();
initializeSwiper();
});
</script>
<!-- for 2023 -->
<div id="Aim" class="section header services">
<div id="how-it-works" class="container">
<h3 class="sectionsmallheaders">Fostering Open-Source Innovation</h3>
<h2 class="sectionnewheaders">Our Aim</h2>
<div class="howitworkswrapper">
<div class="linegradientstart"></div>
<div class="containeritem">
<div class="iteminside image left">
<div class="eclipse small"></div>
<img src="https://uploads-ssl.webflow.com/642c22cbffd9a014d7e28bda/642d4e1f651b71c15c74acf3_image_subscribe.svg"
loading="lazy" alt="" class="illustrationimage" />
</div>
<div class="linegradientstart plain">
<div class="eclipse extrasmall"></div>
<div class="circlenumber">
<div class="numberinsidegradient">1</div>
</div>
</div>
<div class="iteminside text">
<h3 class="heading-3 text-center">Promoting Open-Source Technologies</h3>
<p class="paragraphdesign text-desc">Empowering the VIT community with the knowledge
and tools to contribute to the world of open-source technology and software
development.</p>
</div>
</div>
<div class="containeritem trigger">
<div class="iteminside text">
<h3 class="heading-3 text-center">Enhancing Web Development Skills</h3>
<p class="paragraphdesign text-desc">Equipping students with hands-on experience and
expertise in web development to thrive in the digital age.</p>
</div>
<div class="linegradientstart plain">
<div class="eclipse extrasmall"></div>
<div class="circlenumber">
<div class="numberinsidegradient">2</div>
</div>
</div>
<div class="iteminside image right">
<div class="eclipse small"></div>
<img src="https://uploads-ssl.webflow.com/642c22cbffd9a014d7e28bda/642d50d24eda5ea1270893a4_image_givemetask.svg"
loading="lazy" alt="" class="illustrationimage" />
</div>
</div>
<div class="containeritem trigger">
<div class="iteminside image right">
<div class="eclipse small"></div>
<img src="https://uploads-ssl.webflow.com/642c22cbffd9a014d7e28bda/642d8e093be9f8614718b211_image_receive.svg"
loading="lazy" alt="" class="illustrationimage" />
</div>
<div class="linegradientstart plain">
<div class="eclipse extrasmall"></div>
<div class="circlenumber">
<div class="numberinsidegradient">3</div>
</div>
</div>
<div class="iteminside text">
<h3 class="heading-3 text-center">Fostering a Collaborative Learning Environment
</h3>
<p class="paragraphdesign text-desc">Cultivating a culture of knowledge-sharing and
teamwork among members to drive innovation.</p>
</div>
</div>
<div class="containeritem trigger">
<div class="iteminside image right hide">
<div class="eclipse small"></div>
<img src="https://uploads-ssl.webflow.com/642c22cbffd9a014d7e28bda/642d8e093be9f8614718b211_image_receive.svg"
loading="lazy" alt="" class="illustrationimage" />
</div>
<div class="linegradientstart plain smaller">
<div class="eclipse extrasmall"></div>
<div class="circlenumber">
<div class="numberinsidegradient">4</div>
</div>
</div>
<div class="iteminside text hide">
<h3 class="heading-3">Global Outreach and Impact</h3>
<p class="paragraphdesign text-desc">Expanding our reach beyond borders, connecting
with students from diverse backgrounds, and making a meaningful global impact
through our projects and initiatives.</p>
</div>
</div>
<div class="linegradientstart last"></div>
<div class="lastitemreveision trigger">
<div class="iconcontainer">
<img src="https://uploads-ssl.webflow.com/642c22cbffd9a014d7e28bda/642d8fc469921c4204a86c89_revision-icon.svg"
loading="lazy" alt="" class="image-3" />
<h3 class="heading-3 nomargin">Nurturing Technological Leadership</h3>
</div>
<p class="paragraphdesign center text-desc">Guiding our members to become future
technology leaders by honing their skills, fostering creativity, and instilling a
passion for innovation.</p>
</div>
<div data-w-id="e67514d3-6438-bdb0-bee9-1bc37e4417fd" class="lineanimation"></div>
</div>
</div>
</div>
<div id="Blog" class="section header"></div>
<script>
const blogPosts = [
{
id: 1,
title: "Red Teaming: The Golden Ticket Attack",
image: "https://miro.medium.com/v2/resize:fit:1400/1*xtMTiQmgvYOUthu8Ly1O2w.png",
description: "The world of cybersecurity is constantly evolving, with new threats emerging regularly. To stay ahead of these ever-growing risks, organizations need to prepare proactively.",
author: "Utkarsh Tyagi",
autheredDate: "2024-12-28",
authorTitle: "Firefox Club",
authorLink: "https://medium.com/mozilla-firefox-club/red-teaming-the-golden-ticket-attack-9447fc423970",
imageUrl: "https://miro.medium.com/v2/resize:fill:176:176/1*iDEnh-js3kFGnoHmXWEfaw.png"
},
{
id: 2,
title: "Skip the lag, keep the cache: The Hidden Shortcut to Lightning-Fast Web Pages",
image: "https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe2r3p4d8tc88k9iekcyy.png",
description: "Learn how to reduce web page rendering time by over 7x using the content-visibility CSS property. This blog explains how it optimizes rendering by skipping offscreen elements, improves performance in SPAs, and outperforms display: none for hiding/unhiding content efficiently.",
author: "Keshav Aneja",
autheredDate: "2025-01-13",
authorTitle: "Firefox Club",
authorLink: "https://medium.com/@keshav.aneja09/skip-the-lag-keep-the-cache-the-hidden-shortcut-to-lightning-fast-web-pages-c15ac4598c97",
imageUrl: "https://miro.medium.com/v2/resize:fill:176:176/1*WJ98Hf_OVsJ0dG8J0sA0dA.jpeg",
},
{
id: 3,
title: "Algorithmic Secrets of Viral Content",
image: "https://miro.medium.com/v2/resize:fit:1400/1*hpa6rNYRX524A2djnDHToQ.jpeg",
description: "Have you ever wondered why random content like meme templates, catchy songs, or viral dance moves suddenly dominate social media feeds? At first glance, what may seem like instant online virality is the outcome of carefully designed algorithms.",
author: "Sujaa Shri",
autheredDate: "2024-11-11",
authorTitle: "Firefox Club",
authorLink: "https://medium.com/mozilla-firefox-club/algorithmic-secrets-of-viral-content-08cc9567c553",
imageUrl: "https://miro.medium.com/v2/da:true/resize:fill:176:176/0*ckbjiKN4OrP1NkNi",
},
{
id: 4,
title: "The Rise of AI Powered Code Generation: What it means for developers",
image: "https://miro.medium.com/v2/resize:fit:1400/0*5-GQBqSzRsVDmdlH.jpeg",
description: "In recent years, artificial intelligence (AI) has made remarkable strides across various fields, including software development. One of its most fascinating applications is in AI-powered code generation.",
author: "Vajran Kannadasan",
autheredDate: "2024-10-31",
authorTitle: "Firefox Club",
authorLink: "https://medium.com/mozilla-firefox-club/the-rise-of-ai-powered-code-generation-what-it-means-for-developers-1fd2d52d3bc5",
imageUrl: "https://miro.medium.com/v2/da:true/resize:fill:176:176/0*OQbPnt8nQwm3mLZG",
}
];
function createBlogPostElement(postData) {
const postContainer = document.createElement('a');
postContainer.classList.add('itemcontainer');
postContainer.href = postData.authorLink;
postContainer.target = '_blank';
postContainer.style = "text-decoration :none;";
const radialGradient = document.createElement('div');
radialGradient.classList.add('radial-gradient');
postContainer.appendChild(radialGradient);
const blogImage = document.createElement('img');
blogImage.src = postData.image;
blogImage.alt = `${postData.title} Image`;
blogImage.style = 'width: 100%; height: 200px; object-position: center; object-fit: cover;';
postContainer.appendChild(blogImage);
const title = document.createElement('h3');
title.classList.add('sectionsmallheaders');
title.textContent = postData.title;
postContainer.appendChild(title);
const description = document.createElement('p');
description.classList.add('reviewparagraph', 'blog-desc');
description.textContent = postData.description;
postContainer.appendChild(description);
const authorContainer = document.createElement('div');
authorContainer.classList.add('author-container', 'flex');
const authorImage = document.createElement('img');
authorImage.src = postData.imageUrl;
authorImage.alt = '';
authorImage.classList.add('imagetestimonial');
authorContainer.appendChild(authorImage);
const nameContainer = document.createElement('div');
nameContainer.classList.add('namecontainer');
const authorName = document.createElement('p');
authorName.classList.add('reviewparagraph', 'name');
authorName.textContent = postData.author;
nameContainer.appendChild(authorName);
const authorTitle = document.createElement('p');
authorTitle.classList.add('reviewparagraph', 'title');
const authorLink = document.createElement('a');
authorLink.href = postData.authorLink;
authorLink.textContent = postData.authorTitle;
authorLink.style.textDecoration = 'none';
authorTitle.appendChild(authorLink);
nameContainer.appendChild(authorTitle);
const authoredDate = document.createElement('p');
authoredDate.classList.add('reviewparagraph', 'date');
authoredDate.textContent = `Date: ${postData.autheredDate}`;
nameContainer.appendChild(authoredDate);
authorContainer.appendChild(nameContainer);
postContainer.appendChild(authorContainer);
return postContainer;
}
function renderBlogPosts() {
const blogSection = document.getElementById('Blog');
const container = document.createElement('div');
container.style = "padding-left: 5%; padding-right: 5%;";
container.classList.add('container', 'gallery', 'bottomborder');
const header = document.createElement('h2');
header.classList.add('sectionnewheaders');
header.innerHTML = 'Blog Posts<br />';
container.appendChild(header);
const reviewsContainer = document.createElement('div');
reviewsContainer.classList.add('reviewscontainer');
const sliderItemReview = document.createElement('div');
sliderItemReview.classList.add('slideritemreview');
const verticalTestimonialGrid1 = document.createElement('div');
verticalTestimonialGrid1.classList.add('verticaltestimonialgrid');
blogPosts.slice(0, 2).forEach(post => {
verticalTestimonialGrid1.appendChild(createBlogPostElement(post));
});
const verticalTestimonialGrid2 = document.createElement('div');
verticalTestimonialGrid2.classList.add('verticaltestimonialgrid');
blogPosts.slice(2).forEach(post => {
verticalTestimonialGrid2.appendChild(createBlogPostElement(post));
});
sliderItemReview.appendChild(verticalTestimonialGrid1);
sliderItemReview.appendChild(verticalTestimonialGrid2);
reviewsContainer.appendChild(sliderItemReview);
container.appendChild(reviewsContainer);
blogSection.appendChild(container);
}
renderBlogPosts();
</script>
<a href="https://medium.com/mozilla-firefox-club" class="btn">Read More</a>
<div class="counts">
<div class="p">
<p id="counter">40+</p>
<h4>Events</h4>
</div>
<div class="p">
<p id="counter1">25+</p>
<h4>Projects</h4>
</div>
<div class="p">
<p id="counter2">20+</p>
<h4>Articles</h4>
</div>
<div class="p">
<p id="counter3">2000+</p>
<h4>Followers</h4>
</div>
</div>
<div id="Faculty" class="section header lastsection">
<div class="container gallery bottomborder bottomnone topbordernone">
<div class="titlecontainerbottom">
<h2 class="sectionnewheaders">Our Faculty Coordinator<br /></h2>
</div>
<div class="faculty-card-container flex">
<div class="card-wrapper flex">
<div class="faculty-card faculty-card-front flex">
<div class="info-card flex">
<div class="profile-pic flex">
<img src="img/profile.png" alt="Mr. Jayakumar S" />
</div>
<div class="faculty-name">Mr. Jayakumar S</div>
<div class="position">Faculty Coordinator</div>
</div>
<p class="check">Jayakumar Sadhasivam is an Assistant Professor Senior Grade 1
at
Vellore Institute of Technology (VIT) in the School of Computer Science and
Engineering (SCOPE). Jayakumar's areas of expertise include Open Source
Programming, Network Security, Storage Technologies, and Machine Learning.
His
research interests are in the use of technology in education and developing
open-source software that takes into consideration the unique needs of
learners
</p>
<!-- <div class="flex socials">
<div class="social-icon flex">
<a href="https://www.linkedin.com/in/iamjayakumars">
<img src="img/linkedin.png" alt="linkedin" />
</div>
<div class="social-icon flex">
<a href="https://github.com/iamjayakumars">
<img src="img/github.png" alt="github" />
</div>
<div class="social-icon flex">
<a href="iamjayakumars@gmail.com">
<img src="img/email.png" alt="email"/>
</div>
</div> -->
<div class="profile-icons">
<a class="profile_fab" href="https://www.linkedin.com/in/iamjayakumars">
<i class="fab fa-linkedin-in"></i>
</a>
<a class="profile_fab" href="https://github.com/iamjayakumars">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<!-- <div class="faculty-card faculty-card-back flex">
<p>Jayakumar Sadhasivam is an Assistant Professor Senior Grade 1 at Vellore Institute of Technology (VIT) in the School of Computer Science and Engineering (SCOPE). Jayakumar's areas of expertise include Open Source Programming, Network Security, Storage Technologies, and Machine Learning. His research interests are in the use of technology in education and developing open-source software that takes into consideration the unique needs of learners</p>
</div> -->
</div>
</div>
</div>
</div>
<div id="Board" class="section header">
<div class="container gallery bottomborder bottomnone topbordernone">
<h2 class="sectionnewheaders">Our Team<br /></h2>
<div id="board-members-container" class="benefitscontainer spacetop"></div>
</div>
<script>
// Data for board members
const boardMembers = [
{ name: 'Utkarsh Tyagi', designation: 'Chairperson', image: './img_board/24-25/chair.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/utkarsh-tyagi-/', github: 'https://github.com/utkarsh-creator', instagram: 'https://www.instagram.com/utkarshtyagi07/' } },
{ name: 'Namah Singhal', designation: 'General Secretary', image: './img_board/24-25/gensec.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/namah-singhal-983446217/', github: 'https://github.com/NAMAH942', instagram: 'https://www.instagram.com/nam.ahhh28_/' } },
{ name: 'Chaitanay Kapoor', designation: 'Vice Chairperson', image: './img_board/24-25/vc.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/chaitanay-kapoor-717bb8299/', github: 'https://github.com/chaitanay2004', instagram: 'https://www.instagram.com/chaitanaykapoor/' } },
{ name: 'Vinayak Raina', designation: 'Co-Secretary', image: './img_board/24-25/cosec.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/vinayak-raina-08a71a253', github: 'https://github.com/RAINAVINAYAK16', instagram: 'https://www.instagram.com/raina.vinayak/' } },
{ name: 'Keshav Aneja', designation: 'Technical Head', image: './img_board/24-25/tech.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/keshav-aneja', github: 'https://github.com/Keshav-Aneja', instagram: 'https://www.instagram.com/k.aneja09/' } },
{ name: 'Harshit PG', designation: 'Projects Head', image: './img_board/24-25/project.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/harshit-p-g-a87623272/', github: 'https://github.com/HarshitPG', instagram: 'https://www.instagram.com/harshitpg/' } },
{ name: 'Sameer Mahindru', designation: 'Events Head', image: './img_board/24-25/events.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/sameer-mahindru-39ba91248/', github: 'https://github.com/CodesBySammy', instagram: 'https://www.instagram.com/spammyyy._._/' } },
{ name: 'Kandarp Chandra', designation: 'Research and Development Head', image: './img_board/24-25/r&d.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/kandarp-chandra-b32ba4251/', github: 'https://github.com/kandarpchandra', instagram: 'https://www.instagram.com/kandarp._._/' } },
{ name: 'Kanishka Viswanathan', designation: 'Publicity Head', image: './img_board/24-25/publicity.webp', socialLinks: { linkedin: 'http://www.linkedin.com/in/kanishka-viswanathan', github: 'https://github.com/KanishkaViswanathan', instagram: 'https://www.instagram.com/_kxnishhh/' } },
{ name: 'Divyansh Gautam', designation: 'Design Head', image: './img_board/24-25/design.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/divyansh-gautam-323b47266', github: 'https://github.com/i-divyansh', instagram: 'https://www.instagram.com/i._divyansh/' } },
{ name: 'Himika Bansal', designation: 'HR Head', image: './img_board/24-25/hr.webp', socialLinks: { linkedin: 'http://www.linkedin.com/in/himika-bansal', github: 'https://github.com/himika-bansal', instagram: 'https://www.instagram.com/himika.bansal/' } },
{ name: 'Anshul Kedia', designation: 'Finance Head', image: './img_board/24-25/finance.webp', socialLinks: { linkedin: 'http://www.linkedin.com/in/anshul-kedia-78965b245', github: 'https://github.com/anshulkedia', instagram: 'https://www.instagram.com/anshul.kediaaa/' } },
{ name: 'Harshvardhan Singh', designation: 'Management Head', image: './img_board/24-25/management.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/harshvardhan-singh-b66728250/', github: 'https://github.com/harshvar36', instagram: 'https://www.instagram.com/harshvar_0036/' } },
{ name: 'Akshat Kumar Jha', designation: 'Editorial Head', image: './img_board/24-25/editorial.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/akshat-jha-bbb861254', github: 'https://github.com/axe-hat', instagram: 'https://www.instagram.com/axe.hat/' } },
{ name: 'Kanha Khantaal', designation: 'Outreach Head', image: './img_board/24-25/outreach.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/kanha-khantaal-829302258', github: 'https://github.com/Kanha02052002', instagram: 'https://www.instagram.com/k2g_02/' } },
{ name: 'Samaksh Arjani', designation: 'Creative Head', image: './img_board/24-25/creative.webp', socialLinks: { linkedin: 'https://www.linkedin.com/in/samaksh-arjani-262a12253/', github: 'https://github.com/samaksharjani2004', instagram: 'https://www.instagram.com/chiiinuu._6/' } },
];
// Function to generate HTML for board members
const createBoardMembers = (members) => {
const container = document.getElementById("board-members-container");
members.forEach((member) => {
const memberHTML = `
<div class="itemcontainer2 aligntop borderbottomnew">
<div class="iconcontainer">
<div class="circular-image">
<img src="${member.image}" loading="lazy" alt="${member.name}" class="iconbenefit" />
</div>
<div class="eclipse iconback"></div>
</div>
<div class="benefitscontentright">
<div class="center-vertically">
<h3 class="heading-3">${member.name}</h3>
<p class="paragraphdesign">${member.designation}<br /><br>
${member.socialLinks.linkedin
? `<a class="profile_fab" href="${member.socialLinks.linkedin}" target="_blank"><i class="fab fa-linkedin-in"></i></a>`
: ""
}
${member.socialLinks.github
? `<a class="profile_fab" href="${member.socialLinks.github}" target="_blank"><i class="fab fa-github"></i></a>`
: ""
}
${member.socialLinks.instagram