-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
360 lines (315 loc) Β· 11.6 KB
/
Copy pathindex.html
File metadata and controls
360 lines (315 loc) Β· 11.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Web3 Hackathon 2025</title>
<style>
/* --- VARIABLES & RESET --- */
:root {
--bg-dark: #0a0b1e;
--bg-card: rgba(255, 255, 255, 0.05);
--primary: #00f2ea; /* Cyan */
--secondary: #ff0050; /* Neon Red */
--accent: #7000ff; /* Purple */
--text-main: #ffffff;
--text-muted: #a0a0b0;
--font-main: 'Inter', sans-serif;
--font-mono: 'Courier New', monospace;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-dark);
color: var(--text-main);
font-family: var(--font-main);
line-height: 1.6;
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
/* --- UTILITIES --- */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.btn {
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
border: 1px solid transparent;
}
.btn-primary {
background: linear-gradient(90deg, var(--accent), var(--secondary));
color: white;
box-shadow: 0 0 15px rgba(112, 0, 255, 0.5);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 25px rgba(255, 0, 80, 0.7);
}
.btn-outline {
border: 1px solid var(--primary);
color: var(--primary);
}
.btn-outline:hover {
background: var(--primary);
color: var(--bg-dark);
}
.gradient-text {
background: linear-gradient(90deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* --- HEADER --- */
header {
padding: 20px 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
background: rgba(10, 11, 30, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 800;
font-family: var(--font-mono);
letter-spacing: -1px;
}
.nav-links {
display: flex;
gap: 30px;
}
.nav-links a:hover { color: var(--primary); }
/* --- HERO SECTION --- */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.15), transparent 60%);
}
.hero h1 {
font-size: 4rem;
line-height: 1.1;
margin-bottom: 20px;
font-weight: 900;
}
.hero p {
font-size: 1.2rem;
color: var(--text-muted);
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.countdown {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 40px;
font-family: var(--font-mono);
}
.time-box {
background: var(--bg-card);
padding: 15px 25px;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.1);
}
.time-box span {
display: block;
font-size: 2rem;
font-weight: bold;
color: var(--primary);
}
.time-box small { font-size: 0.8rem; text-transform: uppercase; }
/* --- SECTIONS GENERAL --- */
section { padding: 80px 0; }
.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 60px;
}
/* --- TRACKS GRID --- */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.card {
background: var(--bg-card);
padding: 30px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: 0.3s;
}
.card:hover {
transform: translateY(-10px);
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(0, 242, 234, 0.1);
}
.card-icon {
font-size: 2rem;
margin-bottom: 20px;
}
.card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
/* --- PRIZES --- */
.prize-card {
text-align: center;
border: 1px solid var(--accent);
background: linear-gradient(180deg, rgba(112, 0, 255, 0.1), transparent);
}
.prize-amount {
font-size: 3rem;
font-weight: 800;
color: var(--secondary);
margin: 10px 0;
}
/* --- FOOTER --- */
footer {
padding: 40px 0;
text-align: center;
border-top: 1px solid rgba(255,255,255,0.1);
color: var(--text-muted);
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.nav-links { display: none; } /* Simplified mobile handling */
.countdown { gap: 10px; }
.time-box { padding: 10px 15px; }
.time-box span { font-size: 1.5rem; }
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo"><span class="gradient-text">NEXUS</span> // HACK</div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#tracks">Tracks</a></li>
<li><a href="#prizes">Prizes</a></li>
<li><a href="#sponsors">Sponsors</a></li>
</ul>
<a href="#" class="btn btn-primary">Connect Wallet</a>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>BUILD THE <span class="gradient-text">DECENTRALIZED</span><br>FUTURE</h1>
<p>Join 5,000+ developers, creators, and visionaries for a 48-hour global Web3 hackathon. Build on Ethereum, Solana, and Polygon.</p>
<div class="countdown">
<div class="time-box"><span id="days">00</span><small>Days</small></div>
<div class="time-box"><span id="hours">00</span><small>Hours</small></div>
<div class="time-box"><span id="minutes">00</span><small>Mins</small></div>
<div class="time-box"><span id="seconds">00</span><small>Secs</small></div>
</div>
<div class="hero-btns">
<a href="#" class="btn btn-primary">Register Now</a>
<a href="#" class="btn btn-outline">Read Docs</a>
</div>
</div>
</section>
<section id="tracks">
<div class="container">
<h2 class="section-title">Hackathon <span class="gradient-text">Tracks</span></h2>
<div class="grid">
<div class="card">
<div class="card-icon">πΈ</div>
<h3>DeFi & Fintech</h3>
<p>Reimagine the future of finance. Build lending protocols, yield aggregators, or novel payment solutions.</p>
</div>
<div class="card">
<div class="card-icon">π¨</div>
<h3>NFTs & Gaming</h3>
<p>Create the next generation of GameFi experiences or utility-based NFT marketplaces.</p>
</div>
<div class="card">
<div class="card-icon">ποΈ</div>
<h3>DAOs & Governance</h3>
<p>Build tools for decentralized communities, voting mechanisms, and treasury management.</p>
</div>
<div class="card">
<div class="card-icon">π</div>
<h3>Zero Knowledge</h3>
<p>Leverage ZK-rollups for privacy and scalability. Push the boundaries of cryptography.</p>
</div>
</div>
</div>
</section>
<section id="prizes">
<div class="container">
<h2 class="section-title">Global <span class="gradient-text">Prize Pool</span></h2>
<div class="grid">
<div class="card prize-card">
<h3>π₯ 2nd Place</h3>
<div class="prize-amount">$10,000</div>
<p>+ VC Intro & Audit Credits</p>
</div>
<div class="card prize-card" style="border-color: var(--secondary); transform: scale(1.05);">
<h3>π₯ 1st Place</h3>
<div class="prize-amount">$25,000</div>
<p>+ Incubation & Seed Funding</p>
</div>
<div class="card prize-card">
<h3>π₯ 3rd Place</h3>
<div class="prize-amount">$5,000</div>
<p>+ Mentor Sessions</p>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="logo" style="margin-bottom: 20px;">NEXUS // HACK</div>
<p>© 2025 Nexus Foundation. All rights reserved.</p>
<div style="margin-top: 20px; font-size: 1.5rem;">
<a href="#" style="margin: 0 10px;">πΎ</a>
<a href="#" style="margin: 0 10px;">π¦</a>
<a href="#" style="margin: 0 10px;">βοΈ</a>
</div>
</div>
</footer>
<script>
// Set the date we're counting down to (7 days from now)
const countDownDate = new Date().getTime() + (7 * 24 * 60 * 60 * 1000);
const x = setInterval(function() {
const now = new Date().getTime();
const distance = countDownDate - now;
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").innerHTML = days < 10 ? "0" + days : days;
document.getElementById("hours").innerHTML = hours < 10 ? "0" + hours : hours;
document.getElementById("minutes").innerHTML = minutes < 10 ? "0" + minutes : minutes;
document.getElementById("seconds").innerHTML = seconds < 10 ? "0" + seconds : seconds;
if (distance < 0) {
clearInterval(x);
document.querySelector(".countdown").innerHTML = "HACKATHON STARTED";
}
}, 1000);
</script>
</body>
</html>