-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
810 lines (797 loc) · 34.9 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
<!DOCTYPE html>
<html lang="en" class="has-navbar-fixed-bottom">
<head>
<!-- META -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="sunhacks">
<link rel="icon" href="/assets/images/SVG/small-pink-sun.svg">
<meta name="title" content="sunhacks 2023">
<!-- HTML Meta Tags https://www.opengraph.xyz -->
<title>sunhacks 2023</title>
<meta name="description" content="sunhacks will be hosted in Fall 2023.">
<!-- Facebook Meta Tags https://www.opengraph.xyz -->
<meta property="og:url" content="https://sunhacks.io/">
<meta property="og:type" content="website">
<meta property="og:title" content="sunhacks 2023">
<meta property="og:description" content="sunhacks will be hosted in Fall 2023.">
<meta property="og:image" content="https://sunhacks.io/assets/images/graphics/meta-image.png">
<!-- Twitter Meta Tags https://www.opengraph.xyz -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="sunhacks.io">
<meta property="twitter:url" content="https://sunhacks.io/">
<meta name="twitter:title" content="sunhacks 2023">
<meta name="twitter:description" content="sunhacks will be hosted in Fall 2023.">
<meta name="twitter:image" content="https://sunhacks.io/assets/images/graphics/meta-image.png">
<!-- STYLESHEETS-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="/assets/lib/98.css">
<link rel="stylesheet" href="/assets/index.css">
<script defer="" src="https://use.fontawesome.com/releases/v5.15.3/js/all.js"></script>
</head>
<body>
<!-- Top Box -->
<section class="hero is-transparent is-halfheight">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">
sunhacks 2023
</div>
</div>
<div class="window-body">
<div class="columns" id="mobile-columns">
<div class="column is-4 splash-art">
<img src="assets/images/SVG/computer.svg" alt="sunhacks computer">
</div>
<div class="column hero-info">
<div>
<p class="title is-1">
sunhacks
</p>
<p class="subtitle is-3">
Arizona State University, Coming Fall 2023
</p>
<!-- <p class="subtitle">
Coming online and in person to a stream near you!
</p> -->
</div>
<section class="field-row" style="justify-content: flex-end">
<button onclick="window.open('https://sunhacks.io/mail','_self')" type="button">
Join our Mailing List
</button>
<button onclick="window.open('https://forms.gle/P476Y4zNKC4VC1fg6')" type="button">
Join the organizer team
</button>
<!-- <button onclick="window.open('https://register.sunhacks.io')" type="button">
Register
</button>
<button onclick="window.open('https://live.sunhacks.io')" type="button">
Live Site
</button> -->
</section>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Hackathon info -->
<section class="section">
<div class="container">
<div class="tile is-ancestor">
<div class="tile is-vertical">
<div class="tile">
<div class="tile is-vertical is-3 is-hidden-mobile">
<div class="tile is-parent">
<div class="tile is-child has-bottom-right">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">top-splash.svg</div>
</div>
<div class="window-body">
<img src="assets/images/SVG/top-party.svg" alt="">
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">paper-airplanes.png</div>
</div>
<div class="window-body">
<img src="assets/images/photos/airplanes.png" alt="">
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child">
</div>
</div>
</div>
<div class="tile is-vertical is-6">
<div class="tile is-parent">
<div class="tile is-child">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">What is sunhacks?</div>
</div>
<div class="window-body">
<p class="title is-2">
What is sunhacks?
</p>
<p class="is-size-4">
sunhacks is a yearly hackathon (ideathon, coding marathon, prototyping marathon, etc)
designed to support students
in their innovative journeys. sunhacks is for students of all skill levels, and our job as
organizers is to support you
by providing the resources you need to achieve your development dreams. We provide you with
workshops, mentors,
community connections, and peers who are motivated to help each other succeed and reach their
goals.</p>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">hardware-hacks.png</div>
</div>
<div class="window-body">
<img src="assets/images/photos/hardware.png" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="tile is-vertical is-3 is-hidden-mobile">
<div class="tile is-parent">
<div class="tile is-child">
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child">
<div class="window is-left">
<div class="title-bar">
<div class="title-bar-text">virtual-reality.png</div>
</div>
<div class="window-body">
<img src="assets/images/photos/vr_team.png" alt="">
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child">
<div class="window is-left">
<div class="title-bar">
<div class="title-bar-text">bottom-splash.svg</div>
</div>
<div class="window-body">
<img src="assets/images/SVG/bottom-party.svg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Talking Points -->
<section class="section">
<div class="container">
<div class="columns">
<div class="column">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">talking-point.txt</div>
</div>
<div class="window-body">
<p class="title is-2">
Beginner Friendly.
</p>
<ul class="tree-view">
<li>
Interested in attending but worried that you might not have what it takes?
Fear not! We’ve designed our hackathon to be beginner friendly from the get-go,
complete with intro-level workshops, a network of mentors, and as much
organizer support as you can handle! No coding experience necessary!
</li>
</ul>
</div>
</div>
</div>
<!-- <div class="column">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">talking-point (2).txt</div>
</div>
<div class="window-body">
<p class="title is-2">
Hybrid Hackathon?
</p>
<ul class="tree-view">
<li>
Yep, you read that right. <i>Hybrid. Hackathon.</i>
Are you an ASU student and want to attend in person to connect with your team face to face?
Come on in! Prefer to stay at home and hack in PJ’s and socks? Totally cool too (that sounds
awesome!).
Hybrid hackathons are a first for us here at sunhacks and we’d love for you to be a part of it!
</li>
</ul>
</div>
</div>
</div> -->
<div class="column">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">talking-point (2).txt</div>
</div>
<div class="window-body">
<p class="title is-2">
Contribute!
</p>
<ul class="tree-view">
<li>
We love making sunhacks the best that it can be and would be honored if you were interested in doing
the same!
If you are interested in mentoring, hosting a workshop, judging, or anything else that you feel could
benefit
sunhacks, please sign up <a href="https://forms.gle/vGHTGASK2a1kPi9D8">here</a> or email us at <a
href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section id="faq" class="section">
<div class="container is-max-desktop">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Frequently Asked Questions</div>
</div>
<div class="window-body">
<p class="title is-2">Frequently Asked Questions</strong></p>
<ul class="tree-view">
<li>
<strong>what is a hackathon?</strong>
<ul>
<li>
We consider a hackathon to be a 24-36 hour prototyping marathon. sunhacks is a 24
hour hackathon this Fall! Work on software or hardware solutions to real world
problems, innovative projects, or anything you can think of (even if it’s a silly
idea)!
</li>
</ul>
</li>
<li>
<strong>who can hack?</strong>
<ul>
<li>
Any student over the age of 18 can participate! Arizona State University
students can attend in-person, however, we are limiting in-person participants at
our venue and streaming studio, apply early to snag a spot. If you've recently graduated
you can still participate if you're within one year of your graduation.
</li>
</ul>
</li>
<li>
<strong>i've never programmed before, is it okay?</strong>
<ul>
<li>
Yes! Programmers are not the only people who can participate at a hackathon. We have
people from all sorts of backgrounds and levels of experience attend sunhacks.
If you are new to programming, we also have mentors and workshops
that can teach you how to code! All you need to do is attend, and we’ll support you
the rest of the way!
</li>
</ul>
</li>
<li>
<strong>how much does it cost to participate?</strong>
<ul>
<li>
sunhacks costs zip, zilch and nada to participate! We will never charge you any sort
of participation fee.
</li>
</ul>
</details>
</li>
<li>
<strong>what are the rules?</strong>
<ul>
<li>
Follow the MLH code of conduct! If you are participating with a team, a maximum of 4
people are allowed. Regardless of whether you are in a team or on your own, only one
project can be submitted for the weekend.
</li>
</ul>
</li>
<li>
<strong>can I be a mentor/judge/speaker?</strong>
<ul>
<li>
Our participation rules apply (see: “who can hack”), but we are open to making
exceptions where applicable. All are eligible to be a mentor or speaker regardless
of prior experience, however, a hacker cannot be a judge. As we have limited space
for speakers and judges, those will be selected based on talk or
experience respectively and you will receive confirmation from us when it comes
time.
</li>
</ul>
</li>
<li>
<strong>can I request additional accommodations?</strong>
<ul>
<li>
Absolutely. We will be providing closed captioning, expect our speakers to provide
additional accessible resources, and have multiple methods of interacting with our
event through Discord. However, we can always do better. We encourage you to inform
us through our registration, volunteer form, or via email as soon as possible so we
can incorporate your needs and continue shaping the environment toward a more
inclusive future for all. If you have any questions reach out to us at <a
href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Sponsors -->
<section class="section">
<div class="container is-max-desktop">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">
Sponsors and Partners
</div>
</div>
<div class="window-body">
<ul class="tree-view">
<li>
<i class="fas fa-folder-open"></i>
C:\sunhacks\2021\sponsors
</li>
</ul>
<ul class="tree-view">
<div class="my-4">
<div class="columns is-multiline is-mobile is-vcentered is-centered">
<div class="column is-half-desktop is-half-tablet is-full-mobile">
<a href="https://jobs.aa.com/" target="_blank">
<img class="organizer" src="assets/images/sponsors/american-airlines.png" alt="American Airlines">
</a>
</div>
<div class="column is-half-desktop is-half-tablet is-full-mobile">
<a href="https://www.statefarm.com/careers" target="_blank">
<img class="organizer" src="assets/images/sponsors/statefarm.png" alt="State Farm">
</a>
</div>
</div>
<div class="columns is-multiline is-mobile is-vcentered is-centered">
<div class="column is-two-fifths-desktop is-two-fifths-tablet is-four-fifths-mobile">
<a href="https://amazon.jobs" target="_blank">
<img class="organizer" src="assets/images/sponsors/amazon.png" alt="Amazon">
</a>
</div>
<div class="column is-two-fifths-desktop is-two-fifths-tablet is-four-fifths-mobile">
<a href="https://www.carvana.com/careers" target="_blank">
<img class="organizer" src="assets/images/sponsors/carvana.svg" alt="Carvana">
</a>
</div>
</div>
<div class="columns is-multiline is-mobile is-vcentered is-centered">
<div class="column is-one-fifth-desktop is-one-fifth-tablet is-two-fifths-mobile">
<a href="https://www.americanexpress.com/en-us/careers/" target="_blank">
<img class="organizer" src="assets/images/sponsors/american-express.png" alt="American Express">
</a>
</div>
<div class="column is-one-third-desktop is-one-third-tablet is-four-fifths-mobile">
<a href="https://www.assemblyai.com/" target="_blank">
<img class="organizer" src="assets/images/sponsors/assemblyai.svg" alt="Assembly AI">
</a>
</div>
<div class="column is-one-third-desktop is-one-third-tablet is-four-fifths-mobile">
<a href="https://jobs.ticketmaster.com/" target="_blank">
<img class="organizer" src="assets/images/sponsors/ticketmaster.png" alt="Ticketmaster">
</a>
</div>
</div>
<hr>
<div class="columns is-multiline is-mobile is-vcentered is-centered">
<div class="column is-one-third-desktop is-one-third-tablet is-three-fifths-mobile">
<a href="https://careers.google.com/cloud/" target="_blank">
<img class="organizer" src="assets/images/sponsors/gcp_color.png" alt="Google Cloud">
</a>
</div>
<div class="column is-one-third-desktop is-one-third-tablet is-three-fifths-mobile">
<a href="http://hackp.ac/mlh-stickermule-hackathons" target="_blank">
<img class="organizer" src="assets/images/sponsors/sticker-mule.svg" alt="Sticker Mule">
</a>
</div>
</div>
</div>
</ul>
<p class="has-text-right is-size-6">
Interested in sponsoring? Reach out to us at <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
</div>
</section>
<!-- Our Team -->
<section class="section">
<div class="container is-100ch">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">
Meet the Organizers
</div>
</div>
<div class="window-body">
<ul class="tree-view">
<li>
<i class="fas fa-folder-open"></i>
C:\sunhacks\2021\organizers
</li>
</ul>
<ul class="tree-view">
<div class="columns is-multiline is-mobile">
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/aleya.png" alt="Aleya B.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Aleya_B
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/jake.png" alt="Jake B.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Jake_B
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/austin.png" alt="Jake B.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Austin_B
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/peanut.png" alt="Peanut B.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Peanut_B
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/john.png" alt="John C.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
John_C
</p>
</div>
<!-- <div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/missing.png" alt="Morgan C.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Morgan_C
</p>
</div> -->
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/kaylor.png" alt="Kaylor D.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Kaylor_D
</p>
</div>
<!-- <div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/missing.png" alt="Thy D.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Thy_D
</p>
</div> -->
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/dong.png" alt="Edmund D.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Edmund_D
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/shrey.png" alt="Shrey G.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Shrey_G
</p>
</div>
<!-- <div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/missing.png" alt="Summer G.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Summer_G
</p>
</div> -->
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/paul.png" alt="Paul H.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Paul_H
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/rishik.png" alt="Rishik K.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Rishik_K
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/sapna.png" alt="Sapna K.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Sapna_K
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/cecilia.png" alt="Cecilia L.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Cecilia_L
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/kevin.png" alt="Kevin L.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Kevin_L
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/thaddeus.png" alt="Thaddeus M.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Thaddeus_M
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/sakan.png" alt="Sakan P.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Sakan_P
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/cj.png" alt="CJ S.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
CJ_S
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/zi.png" alt="Zi T.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Zi_T
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/evan.png" alt="Evan T.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Evan_T
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/dave.png" alt="David W.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
David_W
</p>
</div>
<div class="column is-one-quarter-desktop is-one-quarter-tablet is-half-mobile">
<img class="organizer" src="assets/images/photos/organizers/trent.png" alt="Trent W.">
<p class="has-text-centered is-size-5 has-text-weight-bold mt-0 ">
Trent_W
</p>
</div>
</div>
</ul>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container" style="max-width: 80ch;">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">
IMPORTANT INFORMATION
</div>
</div>
<div class="window-body has-text-centered">
<div class="field-row" style="justify-content: center">
<button onclick="window.open('http://static.mlh.io/docs/mlh-code-of-conduct.pdf')" type="button">
MLH Code of Conduct
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Navbar -->
<nav class="navbar is-fixed-bottom" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<button onclick="location.href = 'https://sunhacks.io/'" type="button">
sunhacks
</button>
<div class="task-bar__divider">
</div>
<div class="socials is-hidden-tablet">
<button onclick="window.open('https://www.instagram.com/sunhacksio/')" type="button">
<i class="fab fa-instagram"></i>
</button>
<button onclick="window.open('https://twitter.com/sunhacksio')" type="button">
<i class="fab fa-twitter"></i>
</button>
<button onclick="window.open('https://www.facebook.com/sunhacksio/')" type="button">
<i class="fab fa-facebook-f"></i>
</button>
<button onclick="window.open('https://www.linkedin.com/company/sunhacksio')" type="button">
<i class="fab fa-linkedin"></i>
</button>
</div>
</div>
<div class="navbar-menu">
<button onclick="window.open('https://www.instagram.com/sunhacksio/')" type="button">
<i class="fab fa-instagram"></i>
instagram
</button>
<button onclick="window.open('https://twitter.com/sunhacksio')" type="button">
<i class="fab fa-twitter"></i>
twitter
</button>
<button onclick="window.open('https://www.facebook.com/sunhacksio/')" type="button">
<i class="fab fa-facebook-f"></i>
facebook
</button>
<button onclick="window.open('https://www.linkedin.com/company/sunhacksio')" type="button">
<i class="fab fa-linkedin"></i>
linkedin
</button>
</div>
<div class="navbar-end">
<div class="task-bar__divider">
</div>
<div class="task-bar__tray">
<img src="assets/images/SVG/black-logo.svg" id="task-bar-logo" alt="sunhacks logo">
<div class="time" id="timer">
T-XX:XX:XX:XX
</div>
</div>
</div>
</nav>
<!-- Easter Eggs -->
<div class="eggs">
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Professors Hate Him!1!!</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/hate.gif"
alt="Parody advertisement of a 'hackerman' learning how to build a website in one weekend claiming that professors hate him"
class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">HOT Projects in YOUR AREA</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/hot.gif"
alt="Parody advertisement of hot projects in your area looking for hackers featuring a blinking Arduino and smoking motherboard"
class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Congratulations! You win!</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/congratz.gif"
alt="Parody advertisement claiming you are the millionth visitor to the website and you win a prize if you attend and win at sunhacks 2021"
class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Message Request from Blahaj</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/msg.gif"
alt="Parody advertisement of a stuffed animal shark messaging you to attend a hackathon with them"
class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Enter if you DARE</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/matrix.gif"
alt="Raining code from the Matrix that fades out to say 'BECOME A HACKER AT SUNHACKS'" class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">You've been invited!</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/squad.gif"
alt="Pardy advertisement where a programming cat, dog, and monkey are looking for a fourth teammate"
class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">New Friend Request??!?</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/friend.gif" alt="" class="egg">
</div>
</div>
</div>
<div class="easter">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Wow!!! Cool!!! Wow!!!</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<img src="assets/images/photos/ads/cool_math.gif"
alt="A parody of Cool Math Games highlighting sunhacks cool activities, workshops, prizes, and more!"
class="egg">
</div>
</div>
</div>
</div>
<!-- <a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000"
href="https://mlh.io/seasons/2022/events?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2022-season&utm_content=white"
target="_blank"><img
src="https://s3.amazonaws.com/logged-assets/trust-badge/2022/mlh-trust-badge-2022-white.svg"
alt="Major League Hacking 2022 Hackathon Season" style="width:100%">
</a> -->
<script src="assets/scripts/easter.js"></script>
<script src="assets/scripts/countdown.js"></script>
</body>