Reaperxxxx commited on
Commit
a504181
Β·
verified Β·
1 Parent(s): be14b95

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +388 -19
index.html CHANGED
@@ -1,19 +1,388 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Reiker's Links | CodeNest</title>
7
+ <style>
8
+ :root {
9
+ --glass-bg: rgba(255, 255, 255, 0.08);
10
+ --glass-border: rgba(255, 255, 255, 0.1);
11
+ --glass-shadow: rgba(0, 0, 0, 0.2);
12
+ --accent-color: #58a6ff;
13
+ --accent-glow: rgba(88, 166, 255, 0.5);
14
+ --text-color: rgba(255, 255, 255, 0.9);
15
+ --secondary-text: rgba(255, 255, 255, 0.6);
16
+ }
17
+
18
+ * {
19
+ margin: 0;
20
+ padding: 0;
21
+ box-sizing: border-box;
22
+ }
23
+
24
+ body {
25
+ background-color: #000;
26
+ color: var(--text-color);
27
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
28
+ min-height: 100vh;
29
+ padding: 40px 20px;
30
+ position: relative;
31
+ overflow-x: hidden;
32
+ }
33
+
34
+ body::before {
35
+ content: "";
36
+ position: fixed;
37
+ top: 0;
38
+ left: 0;
39
+ width: 100%;
40
+ height: 100%;
41
+ background:
42
+ radial-gradient(circle at 20% 20%, rgba(88, 166, 255, 0.15), transparent 40%),
43
+ radial-gradient(circle at 80% 80%, rgba(255, 100, 200, 0.15), transparent 40%);
44
+ z-index: -1;
45
+ }
46
+
47
+ .container {
48
+ max-width: 500px;
49
+ margin: 0 auto;
50
+ display: flex;
51
+ flex-direction: column;
52
+ align-items: center;
53
+ gap: 24px;
54
+ position: relative;
55
+ z-index: 1;
56
+ }
57
+
58
+ .header {
59
+ text-align: center;
60
+ margin-bottom: 20px;
61
+ position: relative;
62
+ }
63
+
64
+ h1 {
65
+ color: var(--text-color);
66
+ font-size: 2.5rem;
67
+ font-weight: 700;
68
+ margin-bottom: 10px;
69
+ background: linear-gradient(135deg, #fff, #58a6ff);
70
+ -webkit-background-clip: text;
71
+ background-clip: text;
72
+ -webkit-text-fill-color: transparent;
73
+ position: relative;
74
+ }
75
+
76
+ h1::after {
77
+ content: "🌐";
78
+ position: absolute;
79
+ top: -15px;
80
+ right: -30px;
81
+ font-size: 1.5rem;
82
+ -webkit-text-fill-color: initial;
83
+ filter: drop-shadow(0 0 10px var(--accent-glow));
84
+ animation: float 3s ease-in-out infinite;
85
+ }
86
+
87
+ .subtitle {
88
+ color: var(--secondary-text);
89
+ font-size: 1rem;
90
+ margin-bottom: 30px;
91
+ }
92
+
93
+ .links {
94
+ display: flex;
95
+ flex-direction: column;
96
+ gap: 16px;
97
+ width: 100%;
98
+ }
99
+
100
+ .link {
101
+ display: flex;
102
+ align-items: center;
103
+ padding: 16px 24px;
104
+ background: var(--glass-bg);
105
+ border: 1px solid var(--glass-border);
106
+ border-radius: 16px;
107
+ backdrop-filter: blur(12px);
108
+ -webkit-backdrop-filter: blur(12px);
109
+ color: var(--text-color);
110
+ text-decoration: none;
111
+ font-weight: 500;
112
+ font-size: 1rem;
113
+ transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
114
+ position: relative;
115
+ overflow: hidden;
116
+ box-shadow: 0 4px 20px var(--glass-shadow);
117
+ }
118
+
119
+ .link:hover {
120
+ transform: translateY(-2px) scale(1.02);
121
+ background: rgba(255, 255, 255, 0.12);
122
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
123
+ }
124
+
125
+ .link:active {
126
+ transform: translateY(1px) scale(0.98);
127
+ }
128
+
129
+ .link::before {
130
+ content: "";
131
+ position: absolute;
132
+ top: 0;
133
+ left: -100%;
134
+ width: 100%;
135
+ height: 100%;
136
+ background: linear-gradient(
137
+ 90deg,
138
+ transparent,
139
+ rgba(255, 255, 255, 0.2),
140
+ transparent
141
+ );
142
+ transition: 0.5s;
143
+ }
144
+
145
+ .link:hover::before {
146
+ left: 100%;
147
+ }
148
+
149
+ .link-icon {
150
+ font-size: 1.5rem;
151
+ margin-right: 16px;
152
+ min-width: 24px;
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ }
157
+
158
+ .link-text {
159
+ flex: 1;
160
+ }
161
+
162
+ .link-arrow {
163
+ opacity: 0;
164
+ transform: translateX(-10px);
165
+ transition: all 0.3s ease;
166
+ }
167
+
168
+ .link:hover .link-arrow {
169
+ opacity: 1;
170
+ transform: translateX(0);
171
+ }
172
+
173
+ .footer {
174
+ margin-top: 40px;
175
+ text-align: center;
176
+ color: var(--secondary-text);
177
+ font-size: 0.9rem;
178
+ position: relative;
179
+ padding: 16px;
180
+ background: var(--glass-bg);
181
+ border-radius: 12px;
182
+ backdrop-filter: blur(8px);
183
+ -webkit-backdrop-filter: blur(8px);
184
+ border: 1px solid var(--glass-border);
185
+ width: 100%;
186
+ max-width: 300px;
187
+ }
188
+
189
+ .heart {
190
+ display: inline-block;
191
+ color: #ff6b6b;
192
+ animation: pulse 1.5s ease-in-out infinite;
193
+ }
194
+
195
+ .blob {
196
+ position: fixed;
197
+ border-radius: 50%;
198
+ filter: blur(80px);
199
+ opacity: 0.4;
200
+ z-index: -1;
201
+ }
202
+
203
+ .blob-1 {
204
+ width: 300px;
205
+ height: 300px;
206
+ background: rgba(88, 166, 255, 0.4);
207
+ top: -100px;
208
+ right: -100px;
209
+ animation: blob-move-1 20s infinite alternate ease-in-out;
210
+ }
211
+
212
+ .blob-2 {
213
+ width: 250px;
214
+ height: 250px;
215
+ background: rgba(255, 107, 107, 0.4);
216
+ bottom: -50px;
217
+ left: -100px;
218
+ animation: blob-move-2 15s infinite alternate ease-in-out;
219
+ }
220
+
221
+ @keyframes pulse {
222
+ 0%, 100% { transform: scale(1); }
223
+ 50% { transform: scale(1.2); }
224
+ }
225
+
226
+ @keyframes float {
227
+ 0%, 100% { transform: translateY(0); }
228
+ 50% { transform: translateY(-10px); }
229
+ }
230
+
231
+ @keyframes blob-move-1 {
232
+ 0% { transform: translate(0, 0) scale(1); }
233
+ 100% { transform: translate(-100px, 100px) scale(1.2); }
234
+ }
235
+
236
+ @keyframes blob-move-2 {
237
+ 0% { transform: translate(0, 0) scale(1); }
238
+ 100% { transform: translate(100px, -50px) scale(1.3); }
239
+ }
240
+
241
+ /* Mobile optimizations */
242
+ @media (max-width: 600px) {
243
+ h1 {
244
+ font-size: 2rem;
245
+ }
246
+
247
+ .link {
248
+ padding: 14px 20px;
249
+ }
250
+
251
+ .blob-1, .blob-2 {
252
+ opacity: 0.3;
253
+ }
254
+ }
255
+
256
+ /* Dark mode support */
257
+ @media (prefers-color-scheme: dark) {
258
+ :root {
259
+ --glass-bg: rgba(255, 255, 255, 0.08);
260
+ --glass-border: rgba(255, 255, 255, 0.1);
261
+ }
262
+ }
263
+
264
+ /* Light mode support */
265
+ @media (prefers-color-scheme: light) {
266
+ :root {
267
+ --glass-bg: rgba(255, 255, 255, 0.2);
268
+ --glass-border: rgba(255, 255, 255, 0.3);
269
+ --text-color: rgba(0, 0, 0, 0.8);
270
+ --secondary-text: rgba(0, 0, 0, 0.6);
271
+ }
272
+
273
+ body {
274
+ background-color: #000;
275
+ }
276
+
277
+ h1 {
278
+ background: linear-gradient(135deg, #000, #0066cc);
279
+ }
280
+ }
281
+ </style>
282
+ </head>
283
+ <body>
284
+ <div class="blob blob-1"></div>
285
+ <div class="blob blob-2"></div>
286
+
287
+ <div class="container">
288
+ <div class="header">
289
+ <h1>Reiker's Links</h1>
290
+ <p class="subtitle">Connect with CodeNest services</p>
291
+ </div>
292
+
293
+ <div class="links">
294
+ <a href="https://CodeNest.zone.id" target="_blank" class="link">
295
+ <span class="link-icon">πŸ› οΈ</span>
296
+ <span class="link-text">Free Pterodactyl Panel</span>
297
+ <span class="link-arrow">β†’</span>
298
+ </a>
299
+
300
+ <a href="https://t.me/reikerx" target="_blank" class="link">
301
+ <span class="link-icon">πŸ“’</span>
302
+ <span class="link-text">Telegram Channel</span>
303
+ <span class="link-arrow">β†’</span>
304
+ </a>
305
+
306
+ <a href="https://GitHub.com/ReirLair/Levi-Md" target="_blank" class="link">
307
+ <span class="link-icon">πŸ€–</span>
308
+ <span class="link-text">WhatsApp Bot (Levi-Md)</span>
309
+ <span class="link-arrow">β†’</span>
310
+ </a>
311
+
312
+ <a href="https://t.me/reixxverifybot" target="_blank" class="link">
313
+ <span class="link-icon">πŸ’³</span>
314
+ <span class="link-text">CodeNest Payment Bot</span>
315
+ <span class="link-arrow">β†’</span>
316
+ </a>
317
+
318
+ <a href="https://whatsapp.com/channel/0029VasyE7u2v1Ijck0HDf2C" target="_blank" class="link">
319
+ <span class="link-icon">πŸ“±</span>
320
+ <span class="link-text">WhatsApp Channel</span>
321
+ <span class="link-arrow">β†’</span>
322
+ </a>
323
+
324
+ <a href="https://t.me/ikjava" target="_blank" class="link">
325
+ <span class="link-icon">πŸ‘€</span>
326
+ <span class="link-text">Telegram Username</span>
327
+ <span class="link-arrow">β†’</span>
328
+ </a>
329
+
330
+ <a href="https://reikerapi.zone.id" target="_blank" class="link">
331
+ <span class="link-icon">πŸ“‘</span>
332
+ <span class="link-text">Free Developer APIs</span>
333
+ <span class="link-arrow">β†’</span>
334
+ </a>
335
+ </div>
336
+
337
+ <div class="footer">
338
+ Made with <span class="heart">❀️</span> by Reiker
339
+ </div>
340
+ </div>
341
+
342
+ <script>
343
+ // Add interactive liquid effect on mouse movement
344
+ document.addEventListener('mousemove', function(e) {
345
+ const blobs = document.querySelectorAll('.blob');
346
+ const x = e.clientX / window.innerWidth;
347
+ const y = e.clientY / window.innerHeight;
348
+
349
+ blobs.forEach((blob, index) => {
350
+ const offsetX = (index === 0) ? -x * 20 : x * 20;
351
+ const offsetY = (index === 0) ? -y * 20 : y * 20;
352
+ blob.style.transform = `translate(${offsetX}px, ${offsetY}px)`;
353
+ });
354
+ });
355
+
356
+ // Add touch interaction for mobile
357
+ document.addEventListener('touchmove', function(e) {
358
+ if (e.touches.length > 0) {
359
+ const touch = e.touches[0];
360
+ const x = touch.clientX / window.innerWidth;
361
+ const y = touch.clientY / window.innerHeight;
362
+
363
+ const blobs = document.querySelectorAll('.blob');
364
+ blobs.forEach((blob, index) => {
365
+ const offsetX = (index === 0) ? -x * 10 : x * 10;
366
+ const offsetY = (index === 0) ? -y * 10 : y * 10;
367
+ blob.style.transform = `translate(${offsetX}px, ${offsetY}px)`;
368
+ });
369
+ }
370
+ });
371
+
372
+ // Add subtle animation to links on page load
373
+ document.addEventListener('DOMContentLoaded', function() {
374
+ const links = document.querySelectorAll('.link');
375
+ links.forEach((link, index) => {
376
+ link.style.opacity = '0';
377
+ link.style.transform = 'translateY(20px)';
378
+
379
+ setTimeout(() => {
380
+ link.style.transition = 'all 0.5s cubic-bezier(0.16, 1, 0.3, 1)';
381
+ link.style.opacity = '1';
382
+ link.style.transform = 'translateY(0)';
383
+ }, 100 + (index * 100));
384
+ });
385
+ });
386
+ </script>
387
+ </body>
388
+ </html>