-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
624 lines (552 loc) · 19.9 KB
/
index.html
File metadata and controls
624 lines (552 loc) · 19.9 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
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mr.Nothing Link Tree</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
background: '#000',
foreground: '#fff',
primary: '#008000',
muted: '#888',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
};
</script>
<style>
#matrixCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: black;
}
</style>
<style>
.fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
<style>
#site-offline-notice {
background: #111; /* тёмный фон */
color: #eee; /* светлый текст */
font-family: Arial, sans-serif;
font-size: 15px;
text-align: center;
padding: 10px;
border-top: 2px solid #888; /* тонкая линия сверху */
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 9999;
}
</style>
<style>
.forum-item {
position: relative;
overflow: hidden;
}
.forum-item::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(0, 128, 0, 0.5);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.5s ease, height 0.5s ease;
}
.forum-item:active::after {
width: 200%;
height: 200%;
transition: none;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(10, 10, 10, 1) 100%);
position: relative;
min-height: 100vh;
padding-bottom: 60px;
}
.endway-text {
background: linear-gradient(45deg, #00FF00 0%, #008000 100%);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
letter-spacing: .20em;
font-weight: 600;
font-family: monospace;
text-shadow: 0 0 100px #00FF00, 0 0 41px #008000, 0 0 60px #00FF00, 0 0 9px #008000;
}
.forum-item {
margin-bottom: 1rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(0, 128, 0, 0.2);
border-radius: 8px;
transition: all 0.3s ease;
cursor: pointer;
display: block;
width: 100%;
}
.forum-item:hover {
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(0, 128, 0, 0.2);
border-color: #008000;
background: rgba(0, 128, 0, 0.05);
}
.forum-link {
color: #00FF00;
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
font-weight: 500;
width: 100%;
padding: 0.5rem;
}
.forum-link:hover {
color: #fff;
}
#moreLinks {
background: linear-gradient(45deg, rgba(0, 128, 0, 0.1), rgba(0, 128, 0, 0.2));
border: 2px solid rgba(0, 128, 0, 0.3);
margin-top: 1rem;
}
#moreLinks:hover {
background: linear-gradient(45deg, rgba(0, 128, 0, 0.2), rgba(0, 128, 0, 0.3));
border-color: rgba(0, 128, 0, 0.5);
}
.social-links {
height: 0;
overflow: hidden;
transition: height 0.3s ease-out;
opacity: 0;
}
.project-hover {
position: relative;
overflow: hidden;
}
.project-hover::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(0, 255, 0, 0.12);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.5s cubic-bezier(.4,0,.2,1), height 0.5s cubic-bezier(.4,0,.2,1);
z-index: 0;
}
.project-hover:hover::after {
width: 300%;
height: 300%;
}
.project-hover .forum-link, .project-hover button.forum-link {
position: relative;
z-index: 1;
}
.social-links.show {
height: auto;
opacity: 1;
margin-top: 1rem;
}
.toggle-icon {
transition: transform 0.3s ease;
margin-left: 8px;
}
.rotate-icon {
transform: rotate(180deg);
}
.social-item {
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
.social-links.show .social-item {
opacity: 1;
transform: translateY(0);
}
.video-banner {
width: 100%;
height: auto;
display: block;
pointer-events: none;
user-select: none;
}
#matrixCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
pointer-events: none;
}
#particlesCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}
.social-item:nth-child(1) { transition-delay: 0.1s; }
.social-item:nth-child(2) { transition-delay: 0.2s; }
.social-item:nth-child(3) { transition-delay: 0.3s; }
/* About/Skills/Projects blocks */
.info-block {
background: rgba(0,0,0,0.4);
border-radius: 12px;
padding: 1.5rem;
margin-top: 2rem;
color: #e0ffe0;
box-shadow: 0 2px 16px rgba(0,128,0,0.07);
}
.info-block h2 {
color: #00FF00;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.skills-list {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
margin-top: 1rem;
}
.skills-list span {
font-size: 2rem;
color: #00FF00;
}
.projects-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
@media (min-width: 640px) {
.projects-grid {
grid-template-columns: 1fr 1fr;
}
}
.project-card {
background: rgba(0,0,0,0.5);
border-radius: 8px;
padding: 1rem;
color: #e0ffe0;
border: 1px solid rgba(0,128,0,0.15);
}
.project-card h3 {
color: #00FF00;
font-size: 1.1rem;
font-weight: 600;
}
.project-card a {
color: #00FF00;
text-decoration: underline;
}
.contact-form input,
.contact-form textarea {
background: #111;
color: #fff;
border: 1px solid #008000;
border-radius: 6px;
padding: 0.5rem;
margin-bottom: 0.5rem;
width: 100%;
}
.contact-form button {
background: #008000;
color: #fff;
border: none;
border-radius: 6px;
padding: 0.5rem 1.5rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
}
.contact-form button:hover {
background: #00FF00;
color: #222;
}
</style>
</head>
<!--<div id="site-offline-notice">
<strong>Notice:</strong>
Happy New Year Guys !!!
</div>-->
<body class="bg-background text-foreground">
<canvas id="matrixCanvas"></canvas>
<canvas id="particlesCanvas"></canvas>
<main class="text-center space-y-6 max-w-3xl mx-auto p-6">
<h1 class="text-4xl font-bold sm:text-5xl md:text-6xl relative mt-12 fade-in">
Mr.Nothing <span class="endway-text">Link Tree</span>
</h1>
<p class="text-lg sm:text-xl text-muted mb-8 fade-in">
Welcome to Mr.Nothing's Link Tree
</p>
<div class="space-y-4">
<a href="https://github.com/HackerDefuse" class="forum-item" target="_blank" rel="noopener noreferrer">
<span class="forum-link">GitHub</span>
</a>
<a href="https://t.me/nothing000exe" class="forum-item" target="_blank" rel="noopener noreferrer">
<span class="forum-link">Telegram</span>
</a>
<a href="https://cracked.sh/MrNothing-X" class="forum-item" target="_blank" rel="noopener noreferrer">
<span class="forum-link">Cracked</span>
</a>
<a href="mailto:nothing.in.www@gmail.com" class="forum-item" target="_blank" rel="noopener noreferrer">
<span class="forum-link">Email</span>
</a>
<!-- More Links Button -->
<button id="moreLinks" class="forum-item">
<span class="forum-link">
More Links
<i class="fas fa-chevron-down toggle-icon"></i>
</span>
</button>
<!-- Social Links -->
<div class="social-links">
<a href="https://youtu.be/eByhYbBvNWk?si=RJp1SMD4MdeJPJs4" class="forum-item social-item" target="_blank" rel="noopener noreferrer">
<span class="forum-link">
<i class="fas fa-user-secret mr-2"></i>
ooohhhh.....! mystery...)
</span>
</a>
<a href="https://discord.com/users/937418801635549234" class="forum-item social-item" target="_blank" rel="noopener noreferrer">
<span class="forum-link">
<i class="fab fa-discord mr-2"></i>
Discord
</span>
</a>
</div>
</div>
<!-- About Me Block -->
<div class="info-block fade-in">
<h2>About Me</h2>
<p>
Hi! I'm Mr.Nothing, a passionate developer interested in cybersecurity, automation, and creative coding.<br>
I love building useful tools and exploring new technologies.<br>
My goal is to make the digital world a bit safer and more interesting.
</p>
</div>
<!-- Skills Block -->
<div class="info-block fade-in">
<h2>Skills</h2>
<div class="skills-list">
<span title="Python"><i class="fab fa-python"></i></span>
<span title="JavaScript"><i class="fab fa-js"></i></span>
<span title="Linux"><i class="fab fa-linux"></i></span>
<span title="Cybersecurity"><i class="fas fa-lock"></i></span>
<span title="Git"><i class="fab fa-git-alt"></i></span>
<span title="HTML5"><i class="fab fa-html5"></i></span>
<span title="CSS3"><i class="fab fa-css3-alt"></i></span>
</div>
</div>
<!-- Projects Block -->
<div class="info-block fade-in">
<h2>Projects</h2>
<div class="projects-grid">
<!-- Project 1 -->
<div class="project-card forum-item project-hover">
<h3>NothingBot</h3>
<p>Telegram AI bot.</p>
<a href="https://t.me/nothinginwww_bot" target="_blank" class="forum-link" style="width:100%;display:block;">
View on Telegram
</a>
</div>
<!-- Project 2 (Vendetta Lang) -->
<div class="project-card forum-item project-hover">
<h3>Vendetta Language</h3>
<p>Experimental programming language aimed at self-hosting</p>
<a href="https://github.com/HackerDefuse/vendetta" target="_blank" class="forum-link" style="width:100%;display:block;">
View on GitHub
</a>
</div>
<!-- Project 3 (In Development) -->
<div class="project-card forum-item project-hover">
<h3>In Development</h3>
<p>Stay tuned for new projects!</p>
<button class="forum-link" style="width:100%;display:block;pointer-events:none;opacity:0.7;">
In Development
</button>
</div>
</div>
</div>
<!-- Contact Form -->
<form action="https://formspree.io/f/xeokkbqp" method="POST" class="info-block contact-form fade-in" style="max-width:400px;margin:2rem auto 0;">
<h2>Contact Me</h2>
<input type="email" name="email" placeholder="Your email" required>
<textarea name="message" placeholder="Your message" required rows="4"></textarea>
<button type="submit">Send</button>
</form>
</main>
<div class="fixed bottom-0 left-0 right-0 text-center py-4 z-20 bg-background">
<p class="text-xs text-gray-400 hover:text-gray-300 transition-colors">
by: Mr.Nothing
</p>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const moreLinks = document.getElementById('moreLinks');
const socialLinks = document.querySelector('.social-links');
const toggleIcon = document.querySelector('.toggle-icon');
moreLinks.addEventListener('click', function() {
socialLinks.classList.toggle('show');
toggleIcon.classList.toggle('rotate-icon');
// Set explicit height for animation
if (socialLinks.classList.contains('show')) {
const height = socialLinks.scrollHeight;
socialLinks.style.height = height + 'px';
} else {
socialLinks.style.height = '0';
}
});
});
</script>
<script>
var delay_time_base = 60;
function hover_effect(x, old_txt) {
if (!x.classList.contains('effect')) {
x.classList.add('effect');
var random_txt = [];
for (var i = 0; i < 24; i++) {
var t = '';
for (var ii = 0; ii < old_txt.length; ii++) {
t += old_txt.charAt(Math.floor(Math.random() * old_txt.length));
}
random_txt.push(t);
}
random_txt.push(old_txt);
for (var i = 0; i < random_txt.length; i++) {
set_delayed_txt(x, i, random_txt[i]);
}
window.setTimeout(function () {
x.classList.remove('effect');
}, delay_time_base * random_txt.length);
}
}
function set_delayed_txt(node, time, txt) {
window.setTimeout(function () {
if (node.tagName === 'INPUT') {
node.setAttribute('placeholder', txt);
} else {
node.innerHTML = txt;
}
}, delay_time_base * time);
}
window.onload = function () {
hover_effect(document.querySelector('h1'), 'Mr.Nothing Link Tree');
hover_effect(document.querySelector('p.text-lg'), 'Welcome to Mr.Nothing\'s Link Tree');
document.querySelectorAll('.forum-link').forEach((button) => {
hover_effect(button, button.textContent.trim());
});
};
</script>
<script>
const particlesCanvas = document.getElementById('particlesCanvas');
const particlesCtx = particlesCanvas.getContext('2d');
particlesCanvas.width = window.innerWidth;
particlesCanvas.height = window.innerHeight;
const particles = Array(100).fill().map(() => ({
x: Math.random() * particlesCanvas.width,
y: Math.random() * particlesCanvas.height,
radius: Math.random() * 3,
dx: Math.random() * 2 - 1,
dy: Math.random() * 2 - 1,
}));
function drawParticles() {
particlesCtx.clearRect(0, 0, particlesCanvas.width, particlesCanvas.height);
particles.forEach(p => {
particlesCtx.beginPath();
particlesCtx.arc(p.x, p.y, p.radius, 0, Math.PI * 2);
particlesCtx.fillStyle = '#008000';
particlesCtx.fill();
p.x += p.dx;
p.y += p.dy;
if (p.x < 0 || p.x > particlesCanvas.width) p.dx *= -1;
if (p.y < 0 || p.y > particlesCanvas.height) p.dy *= -1;
});
requestAnimationFrame(drawParticles);
}
drawParticles();
window.addEventListener('resize', () => {
particlesCanvas.width = window.innerWidth;
particlesCanvas.height = window.innerHeight;
});
</script>
<script>
const canvas = document.getElementById('matrixCanvas');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789@#$%^&*()*&^%";
const fontSize = 16;
const columns = canvas.width / fontSize;
const drops = Array(Math.floor(columns)).fill(1);
function drawMatrix() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#00FF00";
ctx.font = `${fontSize}px monospace`;
drops.forEach((y, index) => {
const text = letters[Math.floor(Math.random() * letters.length)];
const x = index * fontSize;
ctx.fillText(text, x, y * fontSize);
if (y * fontSize > canvas.height && Math.random() > 0.975) {
drops[index] = 0;
}
drops[index]++;
});
}
setInterval(drawMatrix, 50);
window.addEventListener('resize', () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
</script>
</body>
</html>