-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1575 lines (1441 loc) · 104 KB
/
index.html
File metadata and controls
1575 lines (1441 loc) · 104 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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>George Hacks 2026</title>
<meta name="description"
content="George Hacks is George Washington University's premier 24-hour hackathon, happening this March. It's an exciting opportunity for innovators to unleash their creativity, tackle real-world challenges, and push the boundaries of their skills and imagination." />
<link rel="stylesheet" href="app/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="app/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="app/dist/app.css">
<link rel="stylesheet" href="assets/font/font-awesome.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Favicon and Touch Icons -->
<link rel="shortcut icon" href="assets/images/last.svg">
<link rel="apple-touch-icon-precomposed" href="assets/images/last.svg">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z4ZEGCCMDB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-Z4ZEGCCMDB');
</script>
<script src="app/js/count-down.js"></script>
<script>
var countDownDate = new Date("April 18, 2026 09:00:00").getTime();
var x = setInterval(function () {
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementsByClassName('js-countdown__value--0')[0].textContent = days
document.getElementsByClassName('js-countdown__value--1')[0].textContent = hours
document.getElementsByClassName('js-countdown__value--2')[0].textContent = minutes
document.getElementsByClassName('js-countdown__value--3')[0].textContent = seconds
}, 1000);
</script>
<body class="header-fixed main">
<!-- preloade -->
<div class="preload preload-container">
<div class="preload-logo"></div>
</div>
<!-- /preload -->
<div id="wrapper">
<!-- Header -->
<header id="header_main" class="header">
<div class="container">
<div id="site-header-inner">
<div class="header__logo">
<a href="#home"><img src="assets/images/logo/.png" alt=""></a>
</div>
<nav id="main-nav" class="main-nav">
<ul id="menu-primary-menu" class="menu">
<li class="menu-item">
<a href="#home">Home</a>
</li>
<li class="menu-item">
<a href="#about">About</a>
</li>
<li class="menu-item">
<a href="#sponsors">Sponsors</a>
</li>
<li class="menu-item">
<a href="#tracks">Tracks</a>
</li>
<li class="menu-item">
<a href="#roadmap">Roadmap</a>
</li>
<!-- <li class="menu-item">
<a href="#project-archive">Project Archive</a>
</li> -->
<li class="menu-item menu-dropdown">
<a href="#project-archive">Project Archive ▾</a>
<ul class="submenu">
<li><a href="./pages/projects-2025.html">2025</a></li>
<li><a href="./pages/projects-2024.html">2024</a></li>
</ul>
</li>
<li class="menu-item">
<a href="#faqs">FAQs</a>
</li>
</ul>
</nav><!-- /#main-nav -->
<!-- <a target="_blank" class="tf-button btn-effect" href="https://app.youform.com/forms/yk5gfurm">
<span class="boder-fade"></span>
<span class="effect">Sign In</span>
</a>
<a target="_blank" class="tf-button btn-effect" href="https://app.youform.com/forms/yk5gfurm">
<span class="boder-fade"></span>
<span class="effect">Join Our Newsletter</span>
</a> -->
<div class="header-cta">
<a class="tf-button btn-effect" href="./pages/signin.html">
<span class="boder-fade"></span>
<span class="effect">Sign In</span>
</a>
<a target="_blank" class="tf-button btn-effect" href="https://app.youform.com/forms/1efmuiou">
<span class="boder-fade"></span>
<span class="effect">REGISTER</span>
</a>
</div>
<div class="mobile-button"><span></span></div><!-- /.mobile-button -->
</div>
</div>
</header>
<!-- end Header -->
<section id="home" class="page-title">
<div class="swiper-container slider-main">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="slider-st3">
<div class="overlay">
<video autoplay muted loop playsinline preload="metadata"
poster="assets/images/hero-poster.jpg">
<source src="assets/video/22-mobile.mp4" type="video/mp4"
media="(max-width: 768px)">
<source src="assets/video/22.mp4" type="video/mp4">
</video>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="box-slider">
<div class="content-box">
<h1 style="font-size: 90px;" class="title" padding-bottom: 50px;>George
Hacks </h1>
<h2 class="sub-title bold "
style="font-size: 25px; font-size: 30px; padding-bottom: 5px; padding-top: 2px;">
George Washington University</h2>
<!--<p class="sub-title bold" style="font-size: 25px;"> presents</p> -->
<h2 class="sub-title bold"> Hackathon - Redefining innovation!</h2>
<h3 class="sub-title bold" id="countdownDateText"
style="font-size: 30px; padding-bottom: 30px; padding-top: 10px;">
April 18-19, 2026</h3>
<!-- <section class="page-title comimg-soon"> -->
<div class="comimg-soon" style="padding-top: 35px;">
<div class="row">
<div class="col-md-12">
<div class="featured-countdown">
<span class="slogan"></span>
<span class="js-countdown" data-timer="2592000"></span>
<ul class="desc">
<li>Days</li>
<li>Hours</li>
<li>Minutes</li>
<li>Seconds</li>
</ul>
</div>
</div>
</div>
</div>
<div class="wrap-btn style3 style3-container">
<a target="_blank" class="tf-button-st2 btn-effect"
href="https://app.youform.com/forms/1efmuiou">
<span class="boder-fade"></span>
<span class="effect">Register</span>
</a>
</div>
<!-- <div class="wrap-btn style2 style2-container">
<a target="_blank" href="https://app.youform.com/forms/yk5gfurm"
class="tf-button-st2 btn-effect"><span class="effect">Join Our
Newsletter</span></a>
<a href="https://linktr.ee/georgehacks?fbclid=PAZXh0bgNhZW0CMTEAAaZYhOGlajqruxdj22YQjN_AqMxPKHTJjauyTN8hdmEErqIwMf_forThzoI_aem_Qx1pxwu8tBk2bV0w5iBM0w"
target='blank' rel="noopener noreferrer"
class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">George Hacks Linktree</span>
</a>
</div> -->
</section>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</section>
<section id="about" class="tf-section tf-about pb-mobie">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="content-about mobie-40" data-aos="fade-up" data-aos-duration="800">
<div class="tf-title st2">
<p class="h8 sub-title">About</p>
<h4 class="title">George Hacks</h4>
</div>
<p style="text-align: justify;">
George Hacks is a student-led innovation organization at the George Washington University,
dedicated to empowering the next generation of problem-solvers in healthcare. Since our
founding in 2018, we’ve provided a platform for students from diverse backgrounds to
collaborate, think outside the box, and address real-world problem-statements presented by
experts in the healthcare industry. Our flagship event, the annual George Hacks Innovation
Hackathon, brings together creative minds from across the D.C. metropolitan area to develop
impactful solutions at the intersection of medicine, technology, and entrepreneurship.
Through hands-on experiences, mentorships, problem solving, and interdisciplinary teamwork,
George Hacks provides students a platform to harness their skills for the greater good.
<br>
<!-- <a href="https://george-hacks.devpost.com/" target='blank' rel="noopener noreferrer"
class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">Devpost</span>
</a> -->
<!--We are excited to announce that George Hacks 7th annual hackathon is scheduled for Saturday, March 1 to Sunday, March 2, 2025, at the Science and Engineering Hall of The George Washington University. University students will be challenged to design solutions that address the 2025 theme: Global Sustainable Development with a focus on the United Nations’ Sustainable Development Goals (SDGs)-->
</p>
</div>
</div>
<div class="col-md-7">
<div class="wrap-about p-l70" data-aos="fade-up" data-aos-duration="800">
<div class="box-text corner-box active">
<div class="h7">George Hacks Innovation Hackathon - 2026</div>
<div class="video-container">
<iframe width="560" height="315"
src="https://www.youtube.com/embed/USK4fLTLRrg?si=NnneoY5fwVhIcdgu"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<!-- <div class="col-md-7">
<div class="wrap-about p-l70" data-aos="fade-up" data-aos-duration="800">
<div class="box-text corner-box active">
<div class="h7">George Hacks Innovation Hackathon</div>
<p>We are excited to announce that the George Hacks Seventh Annual Hackathon is scheduled to be held on Saturday, March 1 and Sunday, March 2, 2025, at the Science and Engineering Hall of the George Washington University. Participants will be challenged to design solutions that align with this year’s theme: Global Sustainable Development with a focus on the United Nations’ Sustainable Development Goals (SDGs).</p>
</div>
<div class="box-text corner-box active">
<div class="h7">When ? </div>
<p>
<ul>
<li>Dates - March 1st and 2nd, 2025</li>
<li>Venue - Science and Engineering Hall, the George Washington University</li>
<li>Time - 9:00 AM on March 1st to 5:00 PM on March 2nd (32 hours)</li>
</ul>
</p>
</div>
<div class="box-text corner-box active">
<div class="h7">Prize Pool</div>
<p>$5,000+ in iPads, Headphones, Quests & More!</p>
</div>
</div>
</div>
</div>
</div>
</section>-->
<section id="sponsors" class="tf-section partner bg-st1 pb-mobie-40">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b60" data-aos="fade-up" data-aos-duration="800">
<h4 class="title">Interested in being a sponsor </h4>
<h4 class="title">for Georgehacks 2026</h4>
<a href="https://www.canva.com/design/DAGZBsuDqmE/DL4Ok6UTK1eaFJUTAFNogQ/edit?utm_content=DAGZBsuDqmE&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton"
target='blank' rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect"> For More Information </span>
</a>
<a href="https://app.youform.com/forms/o7ylp2hl" target='blank'
rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">Become a Sponsor</span>
</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b40" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">2026 Sponsors</p>
<h4 class="title">Supported By</h4>
</div>
</div>
<div class="col-md-12">
<div class="item-parner" data-aos="fade-up" data-aos-duration="800">
<div
style="display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 20px; padding-bottom: 20px;">
<!-- <a href="" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 20em;" src="assets\images\logo\logo_2026\cmu_logo.png" alt="G-KnowMe">
</a> -->
<!-- <a href="https://unite.un.org/en/reboot-earth" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;" src="assets\images\logo\logo_2026\images.png" alt="G-KnowMe">
</a>
<a href="https://www.fao.org/home/en" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;" src="assets\images\logo\logo_2026\UNFAOLogo.png" alt="G-KnowMe">
</a>
<a href="https://aws.amazon.com/free/?trk=4bff893e-6f19-4cd8-accc-699c73895d8c&sc_channel=ps&trk=4bff893e-6f19-4cd8-accc-699c73895d8c&sc_channel=ps&ef_id=CjwKCAiAqKbMBhBmEiwAZ3UboKFmAxh8t9qssFOBF-O5hbr5ntUp0j_LQvJPQxvHivANCHqutRCWZxoCO8IQAvD_BwE:G:s&s_kwcid=AL!4422!3!651751059780!e!!g!!aws!19852662197!145019195897&gad_campaignid=19852662197&gbraid=0AAAAADjHtp_qxCDiDONC-OAdBsjITOjNj&gclid=CjwKCAiAqKbMBhBmEiwAZ3UboKFmAxh8t9qssFOBF-O5hbr5ntUp0j_LQvJPQxvHivANCHqutRCWZxoCO8IQAvD_BwE" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 23em;" src="assets\images\logo\logo_2026\Amazon_Web_Services_Logo.svg.png" alt="Open Source Program office">
</a> -->
<a href="https://unite.un.org/en/reboot-earth" target="blank"
rel="noopener noreferrer">
<div
style="background:#fff;padding:18px;border-radius:6px;display:flex;align-items:center;justify-content:center;">
<img style="width:30em;" src="assets/images/logo/logo_2026/images.png">
</div>
</a>
<a href="https://www.fao.org/home/en" target="blank" rel="noopener noreferrer">
<div
style="background:#fff;padding:18px;border-radius:6px;display:flex;align-items:center;justify-content:center;">
<img style="width:17em;"
src="assets/images/logo/logo_2026/UNFAOLogo.png">
</div>
</a>
<a href="https://aws.amazon.com/free/" target="blank" rel="noopener noreferrer">
<div
style="background:#fff;padding:18px;border-radius:6px;display:flex;align-items:center;justify-content:center;">
<img style="width:21em;"
src="assets/images/logo/logo_2026/Amazon_Web_Services_Logo.svg.png">
</div>
</a>
</div>
<div
style="display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 20px; padding-bottom: 20px;">
<!-- <a href="https://graduate.engineering.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 35em;" src="assets\images\logo\logo_2026\GWGradEngLogo.png" alt="G-KnowMe">
</a>
<a href="https://ospo.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;" src="assets/images/logo/rt.png" alt="G-KnowMe">
</a>
<a href="https://engineering.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;" src="assets/images/logo/as.png" alt="G-KnowMe">
</a> -->
<a href="https://graduate.engineering.gwu.edu/" target="blank"
rel="noopener noreferrer">
<div
style="background:#fff;padding:18px;border-radius:6px;display:flex;align-items:center;justify-content:center;">
<img style="width:25em;"
src="assets/images/logo/logo_2026/GWGradEngLogo.png">
</div>
</a>
<a href="https://ospo.gwu.edu/" target="blank" rel="noopener noreferrer">
<div
style="background:#fff;padding:18px;border-radius:6px;display:flex;align-items:center;justify-content:center;">
<img style="width:25em;" src="assets/images/logo/rt.png">
</div>
</a>
<a href="https://engineering.gwu.edu/" target="blank" rel="noopener noreferrer">
<div
style="background:#fff;padding:18px;border-radius:6px;display:flex;align-items:center;justify-content:center;">
<img style="width:25em;" src="assets/images/logo/as.png">
</div>
</a>
</div>
<div
style="display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 20px; padding-bottom: 20px;">
<a href="https://www.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/GWU.png" alt="G-KnowMe">
</a>
<a href="https://innovation.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/df.png" alt="G-KnowMe">
</a>
<a href="https://gwcoders.github.io/studyGroup/" target='blank'
rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/GWC.png" alt="G-KnowMe">
</a>
<a href="https://engineering.gwu.edu/gw-innovation-center" target='blank'
rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/GWIC.jpg" alt="G-KnowMe">
</a>
</div>
<div class="col-md-12">
<div class="tf-title m-b40" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">Past-Sponsors</p>
<h4 class="title">Supported By</h4>
</div>
</div>
<div
style="display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 20px; padding-bottom: 20px;">
<a href="https://investment.business.gwu.edu/" target='blank'
rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/qw.png" alt="Open Source Program office">
</a>
<a href="https://dcommunity.io/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 20em;"
src="assets/images/logo/we.png" alt="G-KnowMe">
</a>
<!-- <a href="https://ospo.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/rt.png" alt="G-KnowMe">
</a>
<a href="https://engineering.gwu.edu/gw-innovation-center" target='blank'
rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/GWIC.jpg" alt="G-KnowMe">
</a> -->
</div>
<!-- <div
style="display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 20px; padding-bottom: 20px;">
<a href="https://engineering.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/as.png" alt="G-KnowMe">
</a>
<a href="https://www.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/GWU.png" alt="G-KnowMe">
</a>
<a href="https://innovation.gwu.edu/" target='blank' rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/df.png" alt="G-KnowMe">
</a>
</a>
<a href="https://gwcoders.github.io/studyGroup/" target='blank'
rel="noopener noreferrer">
<img style="border-radius: 1px; width: 25em;"
src="assets/images/logo/GWC.png" alt="G-KnowMe">
</a>
</div> -->
</div>
</div>
</div>
</section>
<!-- /UN's SDG's Goals all swipers -->
<!--<section class="tf-section tf-project pb-mobie">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b60" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">Theme for this hackathon</p>
<h4 class="title">UN's Sustainable Development Goals</h4>
<a href="https://sdgs.un.org/goals" target='blank'
rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">UN's SDG </span>
</a>
<a href="https://sdgs.un.org/goals" target='blank'
rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">View on Notion</span>
</a>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="swiper-container swiper mySwiper swiper-h">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="swiper mySwiper1 swiper-v">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/IMG_Goal-1.avif" alt="">
<div class="content">
<a>No Poverty</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/zerohunger.png" alt="">
<div class="content">
<a >Zero Hunger</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/Sustainable_Development_Goal_03GoodHealth.svg.png" alt="">
<div class="content">
<a >Health and well-Being</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/4_quality_education.avif" alt="">
<div class="content">
<a > Quality Education</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/gender.png" alt="">
<div class="content">
<a >Gender Equality</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/unsdg_6_water.png" alt="">
<div class="content">
<a >Clean Water</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/Goal-7-A.jpg" alt="">
<div class="content">
<a >Clean Energy</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/SDG8.png" alt="">
<div class="content">
<a >Economic Growth</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-container swiper mySwiper swiper-h">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="swiper mySwiper2 swiper-v">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/Goal-9-A.jpg" alt="">
<div class="content">
<a >Industry Innovation</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/reduced.png" alt="">
<div class="content">
<a >Reduced Inequalities</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/sdg11.jpg" alt="">
<div class="content">
<a >Sustainable Communities</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/sdg12.jpg" alt="">
<div class="content">
<a >Consuption & Production</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/Goal-13-A.jpg" alt="">
<div class="content">
<a >Climate Action</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/belowwater.png" alt="">
<div class="content">
<a >Life Below Water</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/Goal-15-A.jpg" alt="">
<div class="content">
<a >Life on Land </a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="img-box">
<img src="assets/images/common/peace.png" alt="">
<div class="content">
<a >Peace and Justice</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- This SDG Section ends -->
<section id="tracks" class="tf-section faq">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b60" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">Solve Real-World Problems</p>
<h4 class="title">Problem Statements</h4>
<h4 class="title">Will be revealed Soon...</h4>
<!--
<a href="" target="_blank" rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">PPT Template</span>
</a>
<a href="" target="_blank" rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">View on Notion</span>
</a>
-->
</div>
</div>
<div class="col-md-12" data-aos="fade-up" data-aos-duration="800">
<div class="dashboard-container">
<nav class="track-list" role="tablist" aria-label="Hackathon Tracks">
<button class="track-item active" type="button" role="tab" aria-selected="true"
data-track="t1">
<span class="track-num">01</span>
<span class="track-label">Education & Equality</span>
<span class="live-indicator" aria-hidden="true"></span>
</button>
<button class="track-item" type="button" role="tab" aria-selected="false"
data-track="t2">
<span class="track-num">02</span>
<span class="track-label">Energy & Infrastructure</span>
<span class="live-indicator" aria-hidden="true"></span>
</button>
<button class="track-item" type="button" role="tab" aria-selected="false"
data-track="t3">
<span class="track-num">03</span>
<span class="track-label">Nutrition & Environment</span>
<span class="live-indicator" aria-hidden="true"></span>
</button>
<button class="track-item" type="button" role="tab" aria-selected="false"
data-track="t4">
<span class="track-num">04</span>
<span class="track-label">Create Your Own</span>
<span class="live-indicator" aria-hidden="true"></span>
</button>
</nav>
<div class="detail-panel" id="detail-panel" role="tabpanel" aria-live="polite">
<div id="panel-content"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="tracks" class="tf-section faq">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b60" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">Solve Real-World Problems</p>
<h4 class="title">Problem Statements</h4>
<h4 class="title">Will be revealed Soon...</h4>
<a href="" target='blank'
rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">PPT Template</span>
</a>
<a href="" target='blank'
rel="noopener noreferrer" class="tf-button btn-effect">
<span class="boder-fade"></span>
<span class="effect">View on Notion</span>
</a>
</div>
</div>
<div class="col-md-12">
<div class="flat-accordion" data-aos="fade-up" data-aos-duration="800">
<div class="flat-toggle box-text corner-box active">
<div class="h7 toggle-title"> Track 1. General - Bring your own</div>
<p class="toggle-content"> In this track, teams can create their own problem statement to prototype a solution for. The problem statement must be in relation to the 2025 hackathon theme (Global Sustainable Design with a special focus on the UN’s Sustainable Development Goals (SDGs)).
</p>
</div>
<div class="flat-toggle box-text corner-box active">
<div class="h7 toggle-title"> Track 2. Health & Education and Equality </div>
<p class="toggle-content">
you can check out the problem statements in the link
<a rel="noopener noreferrer" href="https://docs.google.com/document/d/1s_tQwY2wKMVUOfP0UWxWCdpEB03PZx9q/edit?usp=sharing&ouid=107506195031465198362&rtpof=true&sd=true" target="_blank" style="color: #64b8fc">[problem statements link] </a>
</a>
</p>
</div>
<div class="flat-toggle box-text corner-box active">
<div class="h7 toggle-title"> Track 3. Health & Energy and Infrastructure</div>
<p class="toggle-content">you can check out the problem statements in the link
<a rel="noopener noreferrer" href="https://docs.google.com/document/d/1s_tQwY2wKMVUOfP0UWxWCdpEB03PZx9q/edit?usp=sharing&ouid=107506195031465198362&rtpof=true&sd=true" target="_blank" style="color: #64b8fc">[problem statements link] </a>
</p>
</div>
<div class="flat-toggle box-text corner-box active">
<div class="h7 toggle-title"> Track 4. Health & Environment </div>
<p class="toggle-content">you can check out the problem statements in the link
<a rel="noopener noreferrer" href="https://docs.google.com/document/d/1s_tQwY2wKMVUOfP0UWxWCdpEB03PZx9q/edit?usp=sharing&ouid=107506195031465198362&rtpof=true&sd=true" target="_blank" style="color: #64b8fc">[problem statements link] </a>
</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- <section id="roadmap" class="tf-section tf-roadmap style2">
<div class="overlay">
<video src="assets/video/bg.mp4" autoplay loop muted></video>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b40" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">ROADMAP</p>
<h4 class="title">Hackathon Timeline</h4>
</div>
</div>
<div class="col-md-12">
<div class="roadmap style2 style3 ">
<div class="swiper-container swiper sl-roadmap2 btn-style">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="box" data-aos="fade-up" data-aos-duration="1200">
<div class="rm-box style">
<div class="corner-box active">
<h5> Check-in</h5>
<ul>
<p class="bold">March 1st, 2025
<br/>
Check in at 9:00 AM at SEH B1 Level
<a rel="noopener noreferrer" href="https://maps.app.goo.gl/rKrG2j4yQgLNNzyYA" target="_blank" style="color: #64b8fc">[Google Maps] </a>
</p>
<li>Breakfast at 9:00 AM </li>
<li>The Hackathon begins at 10:00 AM!</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="box" data-aos="fade-up" data-aos-duration="1200">
<div class="rm-box style">
<div class="corner-box">
<h5>Hackathon Phase 1</h5>
<ul>
<p class="bold">March 1st, 2025
<br/>
10:00 am at SEH B1</p>
<li>Opening Ceremony at 10 AM</li>
<li>Lunch Break at 12:00 PM</li>
<li>Workshops will begin at 1 PM</li>
<li>Social media setup</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="box" data-aos="fade-up" data-aos-duration="1200">
<div class="rm-box style">
<div class="corner-box">
<h5>Hackathon Phase 2</h5>
<ul>
<p class="bold">March 1st, 2025
<br/>
</p>
<li>Workshop 2 will begin at 2 PM at Room 101</li>
<li>Workshop 3 will begin at 4 PM at Room 104</li>
<li>Dinner at 7 PM at B1 Level</li>
<li>Late night games start at 9 PM</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="box" data-aos="fade-up" data-aos-duration="1200">
<div class="rm-box style">
<div class="corner-box">
<h5>Hackathon Phase 3</h5>
<ul>
<p class="bold">March 2nd, 2025
<br/>
</p>
<li>Nerf Gun War at 9:40 PM at Room 101</li>
<li>Esports tournament at 10:00 PM at Room 102</li>
<li>Late night snacks at B1 Level</li>
<br>
<p class="bold">Final Review at 9:00 am</p>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="box" data-aos="fade-up" data-aos-duration="1200">
<div class="rm-box style">
<div class="corner-box">
<h5>Finals!</h5>
<ul>
<p class="bold">March 2nd, 2025
<br/>
</p>
<li>Check - in at 8:30 AM</li>
<li>Judging rounds begin at 11 AM</li>
<li class="bold">Winners announced at 3:30 PM</li>
<li>Closing ceremony at 4:00 PM</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="wrap-fx2">
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section id="roadmap" class="tf-section tf-roadmap style2">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b40" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">ROADMAP</p>
<h4 class="title">Hackathon Timeline</h4>
</div>
</div>
<div class="col-md-12">
<div class="gh-stepper-track" id="ghStepperTrack" data-aos="fade-up"
data-aos-duration="900">
<div class="gh-step-item" data-step="0">
<div class="gh-step-node">00</div>
<div class="gh-step-label">Day 0</div>
</div>
<div class="gh-step-item is-active" data-step="1">
<div class="gh-step-node">01</div>
<div class="gh-step-label">Day 1</div>
</div>
<div class="gh-step-item" data-step="2">
<div class="gh-step-node">02</div>
<div class="gh-step-label">Day 2</div>
</div>
</div>
<div class="gh-schedule-wrap">
<div class="corner-box active gh-schedule-card" id="ghScheduleCard">
<div class="gh-card-header">
<div class="gh-card-head">
<h4 id="ghCardTitle" class="gh-card-title">Day 1: Kickoff</h4>
<span id="ghCardDate" class="gh-card-sub"></span>
</div>
<span id="ghCardSubtitle" class="gh-card-sub">Initial Phase</span>
</div>
<div class="gh-filter-pills" id="ghFilterPills">
<button class="gh-pill is-active" data-filter="all"
type="button">All</button>
<button class="gh-pill" data-filter="announcement"
type="button">Alerts</button>
<button class="gh-pill" data-filter="main" type="button">Main</button>
<button class="gh-pill" data-filter="food" type="button">Food</button>
<button class="gh-pill" data-filter="workshop"
type="button">Workshops</button>
<button class="gh-pill" data-filter="networking"
type="button">Networking</button>
</div>
<div class="gh-agenda-list" id="ghAgendaList">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="project-archive" class="tf-section ghpa-section">
<div class="container ghpa-container">
<div class="row">
<div class="col-md-12">
<div class="tf-title m-b60 ghpa-hero" data-aos="fade-up" data-aos-duration="800">
<p class="h8 sub-title">PROJECT ARCHIVE</p>
<h4 class="ghpa-hero-title neo-title">
PAST HISTORY OF WINNERS
</h4>
<!-- <div class="ghpa-stats">
<div class="ghpa-stat">
<span class="ghpa-stat-val" data-target="4">0</span>
<span class="ghpa-stat-label">Years Covered</span>
</div>
<div class="ghpa-stat">
<span class="ghpa-stat-val" data-target="8">0</span>
<span class="ghpa-stat-label">Winning Teams</span>
</div>
<div class="ghpa-stat">
<span class="ghpa-stat-val" data-target="40">0</span>
<span class="ghpa-stat-label">Projects Archived</span>
</div>
</div>
</div> -->