-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
351 lines (302 loc) · 8.54 KB
/
index.html
File metadata and controls
351 lines (302 loc) · 8.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hypr</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Space+Grotesk:wght@500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: linear-gradient(155deg, #0a0a0a 0%, #1c2526 100%);
color: #fff;
overflow-x: hidden;
}
header {
background: linear-gradient(to right, #000, #151515);
padding: 1.75rem 0;
border-bottom: 3px solid #ff1a1a;
position: sticky;
top: 0;
z-index: 20;
}
.header-content {
max-width: 1500px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
width: 100px;
}
header p {
font-size: 1.1rem;
color: #d1d5db;
display: none;
}
@media (min-width: 768px) {
header p {
display: block;
}
header h1 {
font-size: 3rem;
}
}
.container {
max-width: 1500px;
margin: 0 auto;
padding: 5rem 1.5rem;
}
.hero {
background: radial-gradient(circle at center, #2a2a2a 0%, #0f0f0f 100%);
padding: 4rem 2.5rem;
border-radius: 1.25rem;
border: 3px solid #ff1a1a;
box-shadow: 0 0 40px rgba(255, 26, 26, 0.7), inset 0 0 15px rgba(255, 26, 26, 0.4);
text-align: center;
animation: fadeIn 1s ease-out;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255, 26, 26, 0.2), transparent 70%);
opacity: 0.3;
z-index: -1;
}
.hero h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 3rem;
font-weight: 700;
color: #ff1a1a;
margin-bottom: 1.75rem;
letter-spacing: 0.8px;
text-transform: uppercase;
}
.hero p {
font-size: 1.3rem;
color: #d1d5db;
margin-bottom: 2.5rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
flex-direction: column;
gap: 1.75rem;
justify-content: center;
}
@media (min-width: 640px) {
.cta-buttons {
flex-direction: row;
}
}
.btn-cta {
position: relative;
overflow: hidden;
padding: 1.25rem 3rem;
font-size: 1.2rem;
font-weight: 600;
border-radius: 1rem;
text-decoration: none;
transition: all 0.5s ease;
z-index: 1;
}
.btn-cta-primary {
background: linear-gradient(45deg, #ff1a1a, #ff4d4d);
color: #fff;
}
.btn-cta-secondary {
background: transparent;
border: 3px solid #ff1a1a;
color: #ff1a1a;
}
.btn-cta:hover {
transform: scale(1.08) translateY(-8px);
box-shadow: 0 15px 25px rgba(255, 26, 26, 0.6);
}
.btn-cta-primary:hover {
background: linear-gradient(45deg, #ff4d4d, #ff6666);
}
.btn-cta-secondary:hover {
background: #ff1a1a;
color: #fff;
}
.btn-cta::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: 0.7s;
}
.btn-cta:hover::after {
left: 100%;
}
.features {
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;
margin-top: 5rem;
}
@media (min-width: 768px) {
.features {
grid-template-columns: repeat(3, 1fr);
}
}
.feature-card {
background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
padding: 2.5rem;
border-radius: 1.25rem;
border: 2px solid #ff1a1a;
transition: all 0.5s ease;
animation: fadeIn 1s ease-out;
position: relative;
}
.feature-card:nth-child(2) {
animation-delay: 0.3s;
}
.feature-card:nth-child(3) {
animation-delay: 0.6s;
}
.feature-card:hover {
transform: translateY(-12px) scale(1.05);
box-shadow: 0 20px 30px rgba(255, 26, 26, 0.5);
border-color: #ff4d4d;
}
.feature-card h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.75rem;
font-weight: 700;
color: #ff1a1a;
margin-bottom: 1.25rem;
}
.feature-card p {
font-size: 1.1rem;
color: #d1d5db;
}
.instructions {
background: linear-gradient(135deg, #1a1a1a, #252525);
padding: 3rem;
border-radius: 1.25rem;
border: 2px solid #ff1a1a;
margin-top: 5rem;
animation: fadeIn 1s ease-out;
animation-delay: 0.9s;
}
.instructions h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 2.25rem;
font-weight: 700;
color: #ff1a1a;
margin-bottom: 1.75rem;
}
.instructions ol {
list-style-type: decimal;
padding-left: 2rem;
color: #d1d5db;
max-width: 900px;
margin: 0;
}
.instructions li {
font-size: 1.2rem;
margin-bottom: 1.25rem;
}
footer {
background: linear-gradient(to right, #000, #151515);
padding: 2.5rem 0;
border-top: 3px solid #ff1a1a;
text-align: center;
}
footer p {
font-size: 1.2rem;
color: #d1d5db;
}
a {
color: #ff1a1a;
text-decoration: none;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-F3BRWBMR2V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-F3BRWBMR2V');
</script>
</head>
<body>
<header>
<div class="header-content">
<img src="brand/logo.png" alt="Hypr Logo" class="logo">
<p>Supercharge Your Schoolwork</p>
</div>
</header>
<div class="container">
<section class="hero">
<h2>Welcome to Hypr</h2>
<p>Revolutionize your school game—click below for instant access to cutting-edge school tools!</p>
<div class="cta-buttons">
<a href="get.html" class="btn-cta btn-cta-primary">Get It Now</a>
<a href="demo.html" class="btn-cta btn-cta-secondary">Try It Out</a>
</div>
</section>
<section class="features">
<div class="feature-card">
<h3>Quick Notes</h3>
<p>Capture key points from any page instantly—study smarter, not harder.</p>
</div>
<div class="feature-card">
<h3>HyprCheats</h3>
<p>Easily access cheats for Blooket, 99math, Kahoot, and more!</p>
</div>
<div class="feature-card">
<h3>Calculator & Unit Converters</h3>
<p>Crush math problems right in your browser with one click.</p>
</div>
</section>
<section class="instructions">
<h2>How to Use Hypr</h2>
<ol>
<li>Click "Get It Now" to download or access the Hypr tool suite.</li>
<li>Install or activate it within your browser environment.</li>
<li>Choose notes, cheats, or calculations on the fly.</li>
</ol>
</section>
</div>
<footer>
<p>© 2025 Hypr.</p>
<p>Looking to block Hypr on your site? Head <a href="protect.html">here</a> for more info.</p>
</footer>
</body>
</html>