-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlive.html
586 lines (540 loc) · 31.5 KB
/
live.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
<!DOCTYPE html>
<html lang="en">
<head lang="en-us">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:url" content="https://hacknc.com/">
<meta property="og:type" content="website">
<meta property="og:title" content="HackNC 2022">
<meta property="og:description" content="UNC-Chapel Hill's Annual Fall Hackathon" />
<link rel="icon" type="image/x-icon" href="./static/assets/images/icons/favicon.ico">
<title>HackNC 2022</title>
<link rel="stylesheet" href="static/css/style.css">
<link rel="stylesheet" href="static/css/nav.css">
<link rel="stylesheet" href="static/css/footer.css">
<link rel="stylesheet" href="static/css/schedule.css">
<link rel="stylesheet" href="static/css/live.css">
<link rel="stylesheet" href="static/css/home.css">
<script type='text/javascript' src='./static/js/config.js'></script>
<script src="https://kit.fontawesome.com/be677f01a1.js" crossorigin="anonymous"></script>
<script src="https://code.iconify.design/iconify-icon/1.0.0/iconify-icon.min.js"></script>
<script type="text/javascript" src="./static/js/mobile-menu.js"></script>
<script type="text/javascript" src="./static/js/sticky-nav.js"></script>
</head>
<a id="mlh-trust-badge" class="badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:15px;top:0;width:10%;z-index:10000" href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2023-season&utm_content=gray" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2023/mlh-trust-badge-2023-gray.svg" alt="Major League Hacking 2023 Hackathon Season" style="width:100%"></a>
<body>
<main id="content container">
<div class="nav-container">
<a href="./index.html">
<img class="logo" src="./static/assets/images/icons/logo.png">
</a>
<nav class="nav-bar">
<div>
<ul>
<li class="nav-item"><a class="nav-link" href="live.html">Live</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="schedule.html#start_date=2022-11-06">Schedule</a></li>
<li class="nav-item"><a class="nav-link" href="resources.html">Resources</a></li>
</ul>
</div>
</nav>
</div>
<div class="section top">
<div class="row mobile-bar">
<img src='./static/assets/images/icons/hamburger.svg' id='hamburger' class='hamburger' onClick="showMobileMenu()" />
<nav class="mobile-nav" id="mobile-nav">
<img src='./static/assets/images/icons/x.svg' id='hamburger-x' class='hamburger-x' onClick="closeMobileMenu()" />
<a class="mobile-nav-link" href="index.html">Home</a><br>
<a class="mobile-nav-link" href="live.html">Live</a><br>
<a class="mobile-nav-link" href="about.html">About</a><br>
<a class="mobile-nav-link" href="schedule.html#start_date=2022-11-06">Schedule</a><br>
<a class="mobile-nav-link" href="resources.html">Resources</a><br>
</nav>
</div>
<h1 class="heading">Live Page</h1>
</div>
<div class="waves-container" id="waves-container">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="0" fill="rgba(255,255,255,0.7" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.5)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.3)" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff" />
</g>
</svg>
</div>
<div id="links">
<div class="live-section button-section">
<h4 style="text-align: center;">Important Links</h4>
<div class = "row buttons" style="align-items: center;">
<a href="https://tinyurl.com/hacknc2022discord" target="_blank"><button class="social-button"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg>  Join our Discord</button></a>
<a href="https://hacknc-2022.devpost.com/" target="_blank"><button class="social-button"><iconify-icon inline icon="simple-icons:devpost" style="color: white;"></iconify-icon>
  Devpost</button> </a>
<a href="https://tinyurl.com/HackNC2022TeamMatching" target="_blank"><button class="social-button"><iconify-icon inline icon="ant-design:form-outlined" style="color: white;"></iconify-icon>
  Team Matching Form</button></a>
<a href="https://docs.google.com/document/d/14y_nIZcHZj0hLD9cL3GLXuOCVDj5E6sZMKAZ8x_R8lI/edit?usp=sharing" target="_blank"><button class="social-button"><iconify-icon inline icon="icon-park-outline:doc-detail" style="color: white;"></iconify-icon>
  Hacker Guide</button></a>
</div>
</div>
</div>
<div>
<h4 style="text-align:center">Schedule</h4>
<div class="calendarBody">
<div class="calendar">
<div class="legend-container"><div class="legend-item"><div class="color-box events"></div><p class="color-description">Events</p></div>
<div class="legend-item"><div class="color-box food"></div><p class="color-description">Food</p></div>
<div class="legend-item"><div class="color-box workshop"></div><p class="color-description">Workshops</p></div>
<div class="legend-item"><div class="color-box activity"></div><p class="color-description">Activities</p></div></div>
<div class="calendar_title" style="display: flex; justify-content: center; align-items: center">
<p class="calendar-header"><span></span><strong>Nov 2 – Nov 6</strong> 2022</p>
</div>
<div style="align-self: flex-start; flex: 0 0 1"></div>
<div class="outer">
<table class="offset">
<thead>
<tr>
<th class="headcol"></th>
<th>Fri, 4</th>
<th>Sat, 5</th>
<th>Sun, 6</th>
</tr>
</thead>
</table>
<div class="wrap">
<table class="offset">
<tbody>
<tr>
<td class="headcol">8 AM</td>
<td></td>
<td><div class="event one-hour food"><p class="event-title">Breakfast</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">8 - 9 AM</p></div></td>
<td><div class="event one-hour food"><p class="event-title">Breakfast</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">8 - 9 AM</p></div></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">9 AM</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">10 AM</td>
<td></td>
<td><div class="event one-hour events"><p class="event-title">Opening Ceremony</p>
<p class="event-description">Student Union - Great Hall</p>
<p class="event-description">10 - 11 AM</p></div></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">11 AM</td>
<td></td>
<td><div class="event one-hour workshop"><p class="event-title">Beginner Workshops*</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">11 AM - 12 PM</p></div></td>
<td><div class="event"><p class="event-title no-description">HACKING ENDS - 11 AM</p>
</div></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td><div class="event one-half-hours food"><p class="event-title">Lunch</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">11 AM - 1 PM</p></div></td>
</tr>
<tr>
<td class="headcol">12 PM</td>
<td></td>
<td><div class="event two-hours left food"><p class="event-title">Lunch</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">12 - 2 PM</p>
</div></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">1 PM</td>
<td></td>
<td><div class="event three-hours right events"><p class="event-title">Sponsorship Fair</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">1 - 4 PM</p>
</div></td>
<td><div class="event two-hours events"><p class="event-title">Judging</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">1 - 3 PM</p></div></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">2 PM</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">3 PM</td>
<td></td>
<td><div class="event two-hours left workshop"><p class="event-title">Coding Workshops*</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">3 - 5 PM</p></div></td>
<td><div class="event one-hour events"><p class="event-title">Judges Deliberate</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">3 - 4 PM</p></div></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">4 PM</td>
<td></td>
<td><div class="event one-hour right food"><p class="event-title">Boba</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">4 - 5 PM</p></div></td>
<td><div class="event one-hour events"><p class="event-title">Closing Ceremony</p>
<p class="event-description">Student Union - Great Hall</p>
<p class="event-description">4 PM</p></div></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">5 PM</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td><div class="event two-hours events"><p class="event-title">ACM X HackNC Kickoff Event</p>
<p class="event-description">Polk Place</p>
<p class="event-description">5 - 7 PM</p>
<a class="schedule-link" target=“_blank” href="https://forms.gle/rWfE4BRpsjirVLau7">Registration Link</a>
</div></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">6 PM</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td><div class="event one-half-hours left food"><p class="event-title">Dinner</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">6:30 - 8 PM</p></div></td>
<td></td>
</tr>
<tr>
<td class="headcol">7 PM</td>
<td></td>
<td><div class="event two-hours right activity"><p class="event-title">Smash Tournament</p>
<p class="event-description">Woollen Classrooms</p>
<p class="event-description">7 - 9 PM</p>
<a class="schedule-link" target=“_blank” href="https://docs.google.com/forms/d/e/1FAIpQLSfJVmik-R9KH2d1nO2ZmC4ZBDML3INhb2geZzTz_-MbdMZryQ/viewform?usp=sf_link">Registration Link</a></div></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">8 PM</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">9 PM</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td class="headcol">10 PM</td>
<td></td>
<td><div class="event one-hour food"><p class="event-title">"Midnight" Cookies</p>
<p class="event-description">Woollen Gym</p>
<p class="event-description">10 PM</p></div></td>
<td></td>
</tr>
<tr>
<td class="headcol"></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="workshop-schedule"><h5>*Workshop Schedule</h5>
<div class='flex'>
<table class='grant-table'>
<tr><th>Workshop</th><th>Place</th><th>Time</th></tr>
<tr class="table-row-even"><td>Basic React Web App Workshop</td><td>Woollen 301</td><td>11 AM - 12 PM</td></tr>
<tr class="table-row-odd"><td>Basic Game Workshop</td><td>Woollen 302</td><td>11 AM - 12 PM</td></tr>
<tr class="table-row-even"><td>Augmented and Virtual Reality Workshop</td><td>Woollen 301</td><td>3 PM - 4 PM</td></tr>
<tr class="table-row-odd"><td>Intro to Data Analytics Workshop</td><td>Woollen 302</td><td>3 PM - 4 PM</td></tr>
<tr class="table-row-even"><td>API Basics Workshop</td><td>Woollen 301</td><td>4 PM - 5 PM</td></tr>
</table>
</div>
</div>
<div>
<h4 style="text-align:center">Location</h4>
<div class = "map-container">
<iframe
id = "location"
frameborder="0" style="border:0"
src = ""
allowfullscreen>
</iframe>
</div>
</div>
<script type="text/javascript">
var url = config.GOOGLE_API_URL;
var map = document.getElementById('location');
map.setAttribute('src', url);
</script>
<div id = "travel">
<div class = "live-section">
<h4 style="text-align:center">Travel</h4>
<h5>Parking</h5>
<p style="font-size: 1rem;">Free parking is available over the weekend everywhere on campus, but we recommend the following decks:</p>
<ul>
<li style="display:block;"><a class="link" href="https://www.google.com/maps/dir/Cobb+Parking+Deck,+Chapel+Hill,+NC+27514/Woollen+Gymnasium,+South+Road,+Chapel+Hill,+NC/@35.9107229,-79.0479376,17z/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x89acc2ea68ddf24b:0x38f6620f02eadfae!2m2!1d-79.0456143!2d35.911746!1m5!1m1!1s0x89acc2ebb64d923f:0x46d0fc575842e791!2m2!1d-79.046014!2d35.9096999!3e2">Cobb Parking Deck</a></li>
<li style="display:block;"><a class="link" href="https://www.google.com/maps/dir/Bell+Tower+Parking+Deck,+Chapel+Hill,+NC/Woollen+Gymnasium,+South+Road,+Chapel+Hill,+NC/@35.9082111,-79.0502803,17z/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x89acc2eedc3bd00f:0x2dd3a16fc7f5b0c9!2m2!1d-79.0500641!2d35.9067103!1m5!1m1!1s0x89acc2ebb64d923f:0x46d0fc575842e791!2m2!1d-79.046014!2d35.9096999!3e2">Bell Tower Parking Deck</a></li>
</ul>
</div>
</div>
<div class="section">
<div class="flex-container">
<h3>Prizes</h3>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">General (1st Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Full HD Monitor</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">General (2nd Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Smart Speaker</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Beginner (1st Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Full HD Monitor</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Beginner (2nd Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Smart Speaker</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best Game Hack</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Mechanical Keyboard</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best UX Hack</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Drawing Tablet</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best Mobile Hack</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Headset</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Meme Competition (1st Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Waterproof Bluetooth Speaker</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Meme Competition (2nd Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Tile Bluetooth Tracker</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Meme Competition (3rd Place)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Rocketbook Smart Reusable Notebook</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best Financial Hack (Capital One)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Amazon Gift Card</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best CX Hack (Genesys)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Amex Giftcards + Swag</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best Junior Hackers (Infosys)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Final Round Interview for Internship</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best Infosys Hack (Infosys)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">Infosys InStep Goodie Bag</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">Best Agricultural Hack (John Deere)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">$100 Electronic Visa Gift Cards</p>
</div>
</div>
<div class="col">
<div class="faq-container accordion">
<img class="faq-icon" src="./static/assets/images/icons/shell.png"/>
<p class = "faq-text-bold">TBD (Lucid)</p><br>
<p class="faq-text" style="margin-left: 2.25rem;">TBD</p>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer-row">
<div style="flex: 40vw; text-align: center; margin-left: 5vw;">
<br>
<h1 class="footer-title">HackNC 2022</h1>
<p class="footer-text"> Contact us at <a class="footer-email"
href="mailto:[email protected]">[email protected]!</a></p>
<p style="font-size: 1rem"><a class="footer-link" href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">MLH code of conduct</a></p>
</div>
<div style="flex: 20vw; margin-left: 5vw;">
<h2 class="footer-text">Site Map</h2>
<a class="footer-link" href="./index.html">Home</a><br>
<a class="footer-link" href="./live.html">Live</a><br>
<a class="footer-link" href="./about.html">About</a><br>
<a class="footer-link" href="./schedule.html#start_date=2022-11-06">Schedule</a><br>
<a class="footer-link" href="./resources.html">Resources</a><br>
</div>
<div class="footer-icons">
<a class="footer-icon" href="https://www.facebook.com/thehacknc/" target="_blank">
<i class="fa-brands fa-facebook-square fa-2xl"></i></a>
<a class="footer-icon" href="https://twitter.com/theHackNC" target="_blank">
<i class="fa-brands fa-twitter-square fa-2xl"></i></a>
<a class="footer-icon" href="https://www.instagram.com/thehacknc/?hl=en" target="_blank">
<i class="fa-brands fa-instagram-square fa-2xl"></i></a>
<a class="footer-icon" href="mailto:[email protected]" target="_blank">
<i class="fa-solid fa-envelope fa-2xl"></i></a>
</div>
</div>
<br>
</div>
</main>
</body>
</html>