-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
433 lines (426 loc) · 14 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HackGwinnett</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- Font Awesome (optional, can be replaced with Heroicons or other modern icons) -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-p6D30A6dbABGV2X9vI7PG0c1zvD/Vr1F/VsrX5ec+nSGkO0YH38X0HLm2dUSJ/BmVb/XECaeMyLAnGSnUv9r5A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- AOS (Animate On Scroll) -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom Font Family -->
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Inter", sans-serif;
}
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Navbar -->
<nav class="fixed top-0 left-0 right-0 bg-green-600 shadow-md z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<!-- Logo -->
<div class="flex items-center">
<a href="index.html">
<img
src="images/homelogo.png"
alt="HackGwinnett Logo"
class="h-8 w-auto"
/>
</a>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-4 montserrat text-white">
<a
href="q&a.html"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>FAQ</a
>
<a
href="location.html"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>Location</a
>
<a
href="contact.html"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>Contact</a
>
<a
href="https://github.com/hackgwinnett"
target="_blank"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>GitHub</a
>
<a
href="git.html"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>Tools</a
>
<a
href="bulletin.html"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>Bulletin</a
>
<a
href="https://hackgwinnett.github.io/blog"
target="_blank"
class="hover:bg-green-700 px-3 py-2 rounded-md text-sm font-medium"
>Blog</a
>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden">
<button
id="mobile-menu-button"
class="text-white focus:outline-none"
>
<i class="fas fa-bars fa-lg"></i>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-green-600">
<a
href="index.html"
class="block px-4 py-2 text-white hover:bg-green-700"
>Home</a
>
<a href="q&a.html" class="block px-4 py-2 text-white hover:bg-green-700"
>FAQ</a
>
<a
href="location.html"
class="block px-4 py-2 text-white hover:bg-green-700"
>Location</a
>
<a
href="contact.html"
class="block px-4 py-2 text-white hover:bg-green-700"
>Contact</a
>
<a
href="https://github.com/hackgwinnett"
target="_blank"
class="block px-4 py-2 text-white hover:bg-green-700"
>GitHub</a
>
<a href="git.html" class="block px-4 py-2 text-white hover:bg-green-700"
>Tools</a
>
<a
href="bulletin.html"
class="block px-4 py-2 text-white hover:bg-green-700"
>Bulletin</a
>
<a
href="https://hackgwinnett.github.io/blog"
target="_blank"
class="block px-4 py-2 text-white hover:bg-green-700"
>Blog</a
>
</div>
</nav>
<!-- Header -->
<header
class="flex flex-col items-center justify-center bg-green-100 py-28 pt-32"
>
<h1
id="homeTitle"
data-aos="fade-up"
data-aos-delay="300"
class="text-4xl md:text-6xl font-black mb-4"
>
HackGwinnett
</h1>
<h4
data-aos="fade-down"
data-aos-delay="500"
class="text-xl md:text-2xl mb-8"
>
HackGwinnett4: October 19, 2024
</h4>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-4">
<a
href="https://discord.gg/M5JM3USkeW"
target="_blank"
class="relative block text-sm font-medium text-emerald-600 focus:outline-none focus:ring"
>
<span class="absolute inset-0 border border-current"></span>
<span
class="block border border-current bg-white px-12 py-3 transition-transform transform hover:-translate-x-1 hover:-translate-y-1 text-center"
>
Join our Discord!
</span>
</a>
<a
href="https://forms.gle/5ZHvvUGLREgfLoU89"
target="_blank"
class="relative block text-sm font-medium text-white bg-emerald-600 border border-emerald-600 px-12 py-3 transition-transform transform hover:-translate-x-1 hover:-translate-y-1 text-center"
>
Register Now!
</a>
<a
href="https://hackgwinnett3.devpost.com/project-gallery"
target="_blank"
class="relative block text-sm font-medium text-emerald-600 focus:outline-none focus:ring"
>
<span class="absolute inset-0 border border-current"></span>
<span
class="block border border-current bg-white px-12 py-3 transition-transform transform hover:-translate-x-1 hover:-translate-y-1 text-center"
>
HG 3.0 Gallery!
</span>
</a>
<a
href="https://forms.gle/KKPNwRW9EsUQbNo9A"
target="_blank"
class="relative block text-sm font-medium text-white bg-emerald-600 border border-emerald-600 px-12 py-3 transition-transform transform hover:-translate-x-1 hover:-translate-y-1 text-center"
>
Submit to HackInnovate!
</a>
</div>
</header>
<!-- First Section -->
<section class="bg-slate-50 py-16">
<div class="max-w-6xl mx-auto px-4">
<div class="flex flex-wrap items-center justify-center">
<div class="w-full md:w-1/2 px-4" data-aos="fade-up-right">
<h2 id="what" class="text-3xl md:text-4xl font-bold mb-4">
Hack-a-What?
</h2>
<div class="space-y-4 text-lg">
<p>
HackGwinnett is MetroAtlanta's premier high school computer
science organization. It features mentors, workshops, and
prizes, and strives to build an inclusive environment for
individuals interested in technology. They run Panel Series and
HackFest events for younger kids interested in technology.
</p>
<p>
HackGwinnett's signature event is its annual hackathon, free of
cost, hosted at GSMST for middle school and high school students
all over GA. Here, students gather to create innovative
solutions to real-world problems within a short time constraint.
</p>
<p>
Be on the lookout for HackGwinnett's fourth hackathon on October
19th to build awesome projects, participate in enriching
workshops, and make new friends!
</p>
</div>
</div>
<div
class="w-full md:w-1/2 px-4 flex justify-center"
data-aos="fade-up-left"
>
<img
src="images/vec.png"
alt="Drone"
class="max-w-full h-auto rounded-lg shadow-lg"
/>
</div>
</div>
</div>
</section>
<!-- Sponsors Section -->
<section class="bg-green-100 py-16">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center">
<h2
data-aos="flip-left"
data-aos-duration="1000"
class="text-3xl md:text-4xl font-bold mb-8"
>
Sponsors
</h2>
<div
data-aos="fade-left"
class="mx-auto flex items-center flex-col max-w-sm my-4"
>
<a href="https://www.statefarm.com/" class="-mb-4">
<img
src="images/state-farm.png"
alt="State Farm's Logo"
class="mx-auto h-24 object-contain"
/>
</a>
<h4 class="mt-2 text-lg">Prizes Sponsored by State Farm</h4>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-5 gap-8">
<!-- Replit -->
<a
href="https://www.repl.it"
data-aos="fade-right"
class="flex justify-center"
>
<img
src="images/replit3.png"
alt="Replit"
class="h-16 object-contain"
/>
</a>
<!-- Slingshot -->
<a
href="https://bit.ly/3n4Q5eS"
data-aos="fade-left"
class="flex justify-center"
>
<img
src="images/slingshot-dark.png"
alt="Slingshot"
class="h-16 object-contain"
/>
</a>
<!-- InspiritAI -->
<a
href="https://www.inspiritai.com/"
data-aos="fade-right"
class="flex justify-center"
>
<img
src="images/inspirit2.png"
alt="InspiritAI"
class="h-16 object-contain"
/>
</a>
<!-- Taskade -->
<a
href="https://www.taskade.com"
data-aos="fade-left"
class="flex justify-center"
>
<img
src="images/taskade.png"
alt="Taskade"
class="h-16 object-contain"
/>
</a>
<!-- Egghead -->
<a
href="https://www.egghead.io"
data-aos="fade-right"
class="flex justify-center"
>
<img
src="images/egghead.png"
alt="Egghead"
class="h-16 object-contain"
/>
</a>
<!-- Hack Club -->
<a
href="https://hackclub.com/"
data-aos="fade-left"
class="flex justify-center"
>
<img
src="images/hackclub2.png"
alt="Hack Club"
class="h-16 object-contain"
/>
</a>
<!-- Interview Cake -->
<a
href="https://www.interviewcake.com/"
data-aos="fade-right"
class="flex justify-center"
>
<img
src="images/interviewcake.png"
alt="Interview Cake"
class="h-16 object-contain"
/>
</a>
<!-- One Source -->
<div data-aos="fade-left" class="flex justify-center">
<img
src="images/bars2.png"
alt="OneSource"
class="h-16 object-contain"
/>
</div>
<!-- MIE Coach -->
<div data-aos="flip-down" class="flex justify-center">
<img
src="images/mie-logo.png"
alt="MIE Coach"
class="h-16 object-contain"
/>
</div>
<!-- GSMST -->
<a
href="https://www.gcpsk12.org/GSMST"
data-aos="flip-down"
class="flex justify-center"
>
<img
src="images/gsmst.png"
alt="GSMST"
class="h-16 object-contain"
/>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-green-600 text-white text-center text-sm py-8">
<div class="flex flex-wrap justify-center">
<a href="q&a.html" class="border-r border-white px-3">FAQ</a>
<a href="location.html" class="border-r border-white px-3">Location</a>
<a
href="https://github.com/hackgwinnett"
target="_blank"
class="border-r border-white px-3"
>GitHub</a
>
<a href="contact.html" class="border-r border-white px-3">Contact</a>
<a href="git.html" class="border-r border-white px-3">Tools</a>
<a href="bulletin.html" class="px-3">Archive</a>
</div>
</footer>
<!-- Scripts -->
<script>
// Toggle the mobile menu
function toggleMobileMenu() {
const menu = document.getElementById("mobile-menu");
menu.classList.toggle("hidden");
}
</script>
<!-- AOS (Animate On Scroll) JS -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
});
</script>
</body>
</html>