-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
460 lines (446 loc) · 25.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-147601557-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-147601557-3');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="./public/img/favicon.ico">
<title>NUS DSC Hackathon</title>
</head>
<body>
<nav class="nav">
<a href="#" class="nav__icon-about">
<img src="public/img/dscnuslogo.png" alt="Logo" class="nav__logo"/>
</a>
<div class="nav__links">
<a href="#about" class="nav__icon-about">About</a>
<a href="#prizes" class="nav__icon-about">Prizes</a>
<a href="#judges" class="nav__icon-about">Judges</a>
<a href="#steps" class="nav__icon-about">Steps</a>
<a href="#faq" class="nav__icon-about">FAQ</a>
<a href="#sponsors" class="nav__icon-about">Sponsors</a>
</div>
</nav>
<div class="section-header">
<div class="header__image-box">
<img src="public/img/hglogo.png" alt="Logo" class="header__image">
</div>
<div class="header__content-box">
<h1 class="title">
Hack For Good 2020
</h1>
<div class="header__content">
<div class="header__info">
<h2 class="header__title u-margin-bottom-small align-center">Final Round</h2>
<ul class="list--light">
<li>21st March 2020, 2pm - 6pm</li>
</li>NUS Computing Com 1, SR 1</li>
</ul>
<hr class="divider"/>
<a href="https://mysurvey.nus.edu.sg/EFM/se/543C610B3FE9FC12" target="_blank" class="btn btn-primary">Register Now</a>
</div>
<div class="header__timer">
<h2 class="header__title align-center">Submission Deadline</h2>
<p class="list--light">19 March 2020, 12pm</p>
<p id="header__countdown"></p>
</div>
<!-- <div class="header__partner">
<h2 class="header__title u-margin-bottom-small align-center"> Official Partner</h2>
<img src="public/img/nvpc.png" class="header__content-image">
</div> -->
</div>
</div>
</div>
<div class="section-about" id="about">
<div class="u-margin-bottom-medium">
<h2 class="title-secondary align-center u-margin-bottom-small">What is it about?</h2>
<p class="paragraph align-center">
DSC NUS presents Hack For Good, a student-run virtual hackathon which seeks to inspire students to learn and use technology for social causes.
Our innovation challenge is unique in that we are posing real problem statements provided by NPOs in Singapore. Participating teams are expected to create technological prototypes as part of their solution to tackle their chosen statement and directly benefit the NPO backing each statement. <br/> <b>Click on one of the 3 topics to find out more about the statements!</b>
</p>
</div>
<div class="cards">
<div class="card">
<div class="question">
<button type="button" class="card__collapsible">Environment</button>
<div class="card__content">
<div class="card__image-box">
<img src="public/img/wwf.jpg" alt="Logo" class="card__image">
</div>
<p class="paragraph">Food production is a major driver for loss of nature, on land and underwater- dietary choices can help reduce emissions, the pressure on land and the ocean. However, currently a third of food produced worldwide is wasted even before it’s consumed. <b>How can we rescue food before it becomes waste? </b> </p>
<div class="card__image-box">
<img src="public/img/conservationInternational.jpg" alt="Logo" class="card__image">
</div>
<p class="paragraph">Mangrove forests are some of the most productive and biologically-diverse ecosystems in the world, but despite their ecological importance and contribution to mitigating the impacts of climate change, they continue to be cleared for development. <b>How can we use tech to create a participatory form of learning in the classroom about the significant role of mangroves in mitigating climate change?</b></p>
</div>
</div>
</div>
<div class="card">
<div class="question">
<button type="button" class="card__collapsible">Equality</button>
<div class="card__content">
<div class="card__image-box">
<img src="public/img/scwo.png" alt="Logo" class="card__image">
</div>
<p class="paragraph">How can we assist women who have to leave their jobs to continue working from their homes in a conducive way so that they continue to <b>progress in their careers and upskill?</b></p>
</div>
</div>
</div>
<div class="card">
<div class="question">
<button type="button" class="card__collapsible">Health</button>
<div class="card__content">
<div class="card__image-box">
<img src="public/img/aphasia.png" alt="Logo" class="card__image">
</div>
<p class="paragraph">How can we enable people with Aphasia in Singapore to return to <b>meaningful engagement or employment in the community?</b></p>
<div class="card__image-box">
<img src="public/img/sacac.png" alt="Logo" class="card__image">
</div>
<p class="paragraph">Develop a technological solution to address any or some of the following issues centered around <b>stress, anxiety and depression</b>:</p>
<ul>
<li>Overuse of Technology</li>
<li>Lack of Sleep</li>
<li>Academic Pressure</li>
<li>Relationships</li>
<li>Nutrition</li>
<li>Performance Stress</li>
<li>Exercise</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="section-prizes" id="prizes">
<h2 class="title-secondary align-center color-primary-light u-margin-bottom-small">The Prizes</h2>
<div class="prizes">
<div class="prize margin-auto">
<div class="prize__image-box">
<img src="public/img/switch.png" alt="Champion" class="prize__img">
</div>
<div class="prize__content-box">
<h3 class="title-tertiary">Champion</h3>
<p class="paragraph"><span class="prize__money">Nintendo Switch*</span></p>
</div>
</div>
<div class="prizes--horizontal">
<div class="prize">
<div class="prize__image-box">
<img src="public/img/kindle.png" alt="2nd prize" class="prize__img">
</div>
<div class="prize__content-box">
<h3 class="title-tertiary">2nd Prize</h3>
<p class="paragraph"><span class="prize__money">Kindle Paperwhite*</span></p>
</div>
</div>
<div class="prize">
<div class="prize__image-box">
<img src="public/img/googlehome.png" alt="3rd prize" class="prize__img">
</div>
<div class="prize__content-box">
<h3 class="title-tertiary">3rd Prize</h3>
<p class="paragraph"><span class="prize__money">Google Home*</span></p>
</div>
</div>
</div>
</div>
<br></br>
<p class="list--light">*per member</p>
</div>
<div class="section-judges" id="judges">
<div class="u-margin-bottom-medium">
<h2 class="title-secondary align-center u-margin-bottom-small">Our Judges</h2>
<div class="judges">
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/mani.png" alt="Judge 1" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">Manikantan Krishnamurthy</p>
<p class="paragraph">Program Manager, Developer Relations & Ecosystem, Google</p>
</div>
</div>
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/nicholas.png" alt="Judge 2" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">Nicholas Ooi</p>
<p class="paragraph">CEO, Bantu</p>
</div>
</div>
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/esther.png" alt="Judge 1" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">Esther Goh</p>
<p class="paragraph">Associate Professor, Head of Department of Social Work, NUS</p>
</div>
</div>
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/raymond.png" alt="Judge 1" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">Raymond Choong</p>
<p class="paragraph">Corporate Development, Quest Ventures</p>
</div>
</div>
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/marcus.png" alt="Judge 1" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">Marcus Wong</p>
<p class="paragraph">Youth Entrepreneurship, ACE</p>
</div>
</div>
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/corrine.png" alt="Judge 1" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">Corrine Ong</p>
<p class="paragraph">Deputy Director, Community Engagement, OSA</p>
</div>
</div>
<div class="judge">
<div class="judge__image-box">
<img src="/public/img/dscnus.png" alt="Judge 1" class="judge__image">
</div>
<div class="judge__content">
<p class="title-tertiary">DSCNUS</p>
<p class="paragraph">Program Manager, Developer Relations & Ecosystem, Google</p>
</div>
</div>
</div>
</div>
</div>
<div class="section-steps" id="steps">
<h2 class="title-secondary align-center u-margin-bottom-small">What you need to do</h2>
<div class="steps">
<div class="container left">
<div class="steps__content">
<h2 class="title-tertiary u-margin-bottom-small">28th February 2020</h2>
<p class="paragraph">Registration Opens!</p>
<ul class="list">
<li class="list__item">Hack for Good embraces diversity and we highly encourage students from all sorts of diverse backgrounds to take part in our hackathon. Champion inclusivity in your groups through partnering up with members of diverse backgrounds- different majors, years, ethnicity, nationalities, you name it!</li>
<br/>
<li class="list__item">Choose one problem statement from above and start hacking!</li>
<li class="list__item">Open to any students enrolled in any tertiary educational institution.</li>
<li class="list__item">Form teams from 1 - 4 people. If you can't find a team, form a team <a class="steps__link" target="_blank" href="https://t.me/HackForGoodTeamFormation">here</a>.</li>
<br/>
<li class="list__item"><b>Registration:</b> Submit your team registration <a class="steps__link" target="_blank" href="https://mysurvey.nus.edu.sg/EFM/se/543C610B3FE9FC12">here</a>. (External Form)</li>
<li class="list__item">Join the Official Telegram Group for announcements <a class="steps__link" target="_blank" href="https://t.me/HackForGoodInfo">here</a>.</li>
</ul>
</div>
</div>
<div class="container right">
<div class="steps__content">
<h2 class="title-tertiary u-margin-bottom-small">19th March 2020, 12pm</h2>
<p class="paragraph">Submission Deadline!</p>
<ul class="list">
<li class="list__item">Your submission should be based on one of the problem statements in any of the 3 pillars.</li>
<li class="list__item">You are required to submit a presentation deck with the following details: </li>
<ul>
<li>Problem statement chosen.</li>
<li>Details of your solutions.</li>
<li>Impact and novelty of your solution.</li>
<li>Screenshots or video walk-through of your solution.</li>
<li>Relevant links to your prototype or code.</li>
<li>OPTIONALLY a pitch video</li>
</ul>
<br/>
<li class="list__item">Focus on building a good solution rather than on a perfect sales pitch.</li>
<li class="list__item">You can use any programming language, framework or technology to build your solution.</li>
<br/>
<li class="list__item">It is compulsory for you to view and consent to our Code of Conduct and Submission Rights & Display guidelines. The NUS Office of Student Affairs will entirely own the right of your solutions and will implement the solutions as they deem fit to benefit Hack For Good 2020's partner non-profit organizations.</li>
<br/>
<li class="list__item">All teams and projects will be featured or displayed on DSCNUS' websites, social media and future marketing material.</li>
<br/>
<li class="list__item">All attendees, sponsors, partners, volunteers and staff at our hackathon are required to agree with the following <a class="steps__link" target="_blank" href="https://hackcodeofconduct.org/1299-hack_for_good_2020">code of conduct</a>.</li>
<br/>
<li class="list__item"><b>Submissions:</b> ZIP your deck, prototype and relevant code and name it with your team name in an email to <a class="steps__link" href="mailto:dsc@comp.nus.edu.sg">dsc@comp.nus.edu.sg</a>. We will not accept submissions elsewhere.</li>
</ul>
</div>
</div>
<div class="container left">
<div class="steps__content">
<h2 class="title-tertiary u-margin-bottom-small">19th March 2020, End of Day</h2>
<p class="paragraph">Finalists Announced!</p>
<ul class="list">
<li class="list__item">Based on the usefulness, creativity, and technical accomplishment of the solutions, the Top 2 teams in each problem statement will be selected for the final round. </li>
<li class="list__item">Finalists will be notified via our Announcements and Q&A telegram group.</li>
</ul>
</div>
</div>
<div class="container right">
<div class="steps__content">
<h2 class="title-tertiary u-margin-bottom-small">21st March 2020</h2>
<p class="paragraph">Final Pitch!</p>
<ul class="list">
<li class="list__item">Finalists are expected to do a 5-min presentation + 5-min Q&A on their solution in front of a panel of judges.</li>
<li class="list__item">Due to limitations on the number of people we can have present in a physical event due to COVID-19, only finalists will be allowed to attend our final round and receive our exclusive T-shirts and sponsored swags.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="section-timeline">
<h2 class="title-secondary align-center u-margin-bottom-small">Timeline For Finals</h2>
<table class="table">
<tr>
<th width="30%">Time</th>
<th width="70%">Event</th>
</tr>
<tr>
<td>1400</td>
<td>Registration + Temperature Taking</td>
</tr>
<tr>
<td>1430</td>
<td>Introduction</td>
</tr>
<tr>
<td>1500</td>
<td>Start of Pitch!</td>
</tr>
<tr>
<td>1645</td>
<td>Judges Deliberation</td>
</tr>
<tr>
<td>1700</td>
<td>Prize Presentation</td>
</tr>
<tr>
<td>1730</td>
<td>Closing</td>
</tr>
</table >
</div>
<div class="section-faq" id="faq">
<h2 class="title-secondary align-center u-margin-bottom-small">Frequently Asked Questions</h2>
<div class="question">
<button type="button" class="question__collapsible">Does the idea have to be fully working?</button>
<div class="question__content">
<p>The idea does not have to be fully implemented. However the submission should be functional so that it can be reviewed by judges.</p>
</div>
</div>
<div class="question">
<button type="button" class="question__collapsible">Do I need tech experience?</button>
<div class="question__content">
<p>Not at all! Students from all faculties, backgrounds, and experiences are welcome. Our tech team and mentors will be around to provide tech assistance. All you need is an interest in technology or an interesting idea for one of our challenges!
</p>
</div>
</div>
<div class="question">
<button type="button" class="question__collapsible">What do I need to bring for the pitch?</button>
<div class="question__content">
<p>Bring your own laptop, charger and any other tech you will need for the presentation. A photo ID will be required to gain entrance into the event. A jacket and water bottle is recommended too.
</p>
</div>
</div>
<div class="question">
<button type="button" class="question__collapsible">What if I can’t make it for the finale?</button>
<div class="question__content">
<p>At least 1 member must be present, but we highly encourage the entire team to be present for the finale.
</br>Prizes will only be handed out to members in the winning teams if they are present with their identity card. If they are unable to do so, we will have to arrange for a separate time to hand it over.
</p>
</div>
</div>
<div class="question">
<button type="button" class="question__collapsible">Can I invite my friends and family to come over?</button>
<div class="question__content">
<p>Unfortunately no. Only your team is allowed to attend due to COVID-19 gathering size restrictions. Photos and videos will be shared with you online after the event!
</p>
</div>
</div>
<div class="question">
<button type="button" class="question__collapsible">Will there be precautionary measures in place to minimise the risk of the spread of COVID-19?</button>
<div class="question__content">
<ul>
<li>We will be setting up contact tracing and temperature screening booths.</li>
<li>We will also be distributing surgical masks to participants of the finale event.</li>
<li>The expected number of people attending the finale event will be restricted to max 50.</li>
</ul>
<br />
<p>The following participants will not be allowed into the Hack For Good Finals event:</p>
<ul>
<li>Any attendee with a fever (above 38 degrees), cough, or any flu-like symptoms.</li>
<li>Participants who are serving a Home Quarantine Order or a Leave of Absence relating to the COVID-19 Virus.</li>
<li>Participants who declared travel history to mainland China, South Korea, Italy, and Iran within the past 14 days of the event.</li>
</ul>
</div>
</div>
</div>
<div class="section-sponsors" id="sponsors">
<h2 class="title-secondary align-center u-margin-bottom-small">Our Sponsors</h2>
<div class="paragraph align-center u-margin-bottom-medium">None of this would have been possible without them!</div>
<h3 class="title-tertiary color-primary align-center u-margin-bottom-small">Made Possible By</h3>
<div class="sponsors">
<a href="http://www.nus.edu.sg/osa" target="_blank" class="sponsor">
<img src="public/img/osa.png" alt="Sponsor" class="sponsor__image--long">
</a>
</div>
<h3 class="title-tertiary color-primary align-center u-margin-bottom-small">Suppported By</h3>
<div class="sponsors">
<a href="https://www.holmusk.com/" target="_blank" class="sponsor">
<img src="public/img/holmusk.png" alt="Sponsor" class="sponsor__image">
</a>
<a href="https://www.grab.com/sg/" target="_blank" class="sponsor">
<img src="public/img/grab.png" alt="Sponsor" class="sponsor__image">
</a>
<a href="https://about.google/" target="_blank" class="sponsor">
<img src="public/img/google.jpg" alt="Sponsor" class="sponsor__image">
</a>
<a href="https://www.questventures.com/" target="_blank" class="sponsor">
<img src="public/img/questventures.png" alt="Sponsor" class="sponsor__image">
</a>
<a href="https://www.comp.nus.edu.sg/" target="_blank" class="sponsor">
<img src="public/img/nuscomputing.png" alt="Sponsor" class="sponsor__image">
</a>
</div>
</div>
<div class="section-register">
<div class="title-secondary title-secondary--dark u-margin-bottom-medium">
Ready to join us?
</div>
<a
class="btn btn-primary"
href="https://mysurvey.nus.edu.sg/EFM/se/543C610B3FE9FC12"
target="_blank"
>
Sign up now
</a>
<hr class="register__divider"/>
<div class="register">
<img src="public/img/hack1.jpg" alt="Event" class="register__image">
<img src="public/img/dsc.jpg" alt="Event" class="register__image">
<img src="public/img/hack3.jpg" alt="Event" class="register__image">
</div>
</div>
<footer class="footer">
<h2 class="title-tertiary title-tertiary--light">Contact Us</h2>
<p class="paragraph paragraph">Do you have any questions about the Hack For Good hackathon?</p>
<p class="paragraph u-margin-bottom-medium paragraph">Feel free to contact us at <br/> <a class="link" href="https://t.me/HackForGoodInfo" target="_blank">https://t.me/HackForGoodInfo</a> </p>
<p class="paragraph paragraph">Please visit us at <br/><a class="link" href="https://dsc.comp.nus.edu.sg/" target="_blank">https://dsc.comp.nus.edu.sg/</a></p>
</footer>
<button id="scrollToTop">▲</button>
</body>
<script src="js/script.js"></script>
</html>