-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
175 lines (142 loc) · 3.58 KB
/
Copy pathindex.html
File metadata and controls
175 lines (142 loc) · 3.58 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
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Niyad Labs | Portfolio Moved</title>
<meta name="description" content="The Niyad Labs portfolio has moved to a new location." />
<meta http-equiv="refresh" content="5; url=https://niyad-labs.github.io/" />
<link rel="canonical" href="https://niyad-labs.github.io/" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
font-family: Inter, Segoe UI, Roboto, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background:
radial-gradient(circle at top, #4f46e520, transparent 45%),
radial-gradient(circle at bottom, #06b6d420, transparent 45%),
#050816;
color: white;
overflow: hidden;
}
.card {
width: min(92%, 620px);
padding: 45px;
border-radius: 24px;
background: rgba(255, 255, 255, .06);
backdrop-filter: blur(18px);
border: 1px solid rgba(255, 255, 255, .12);
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
animation: fade .7s ease;
}
.logo {
width: 95px;
height: 95px;
margin: auto;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
font-weight: 700;
background: linear-gradient(135deg, #6366f1, #06b6d4);
box-shadow: 0 0 35px rgba(99, 102, 241, .45);
animation: pulse 2.5s infinite;
}
h1 {
margin-top: 28px;
font-size: 2rem;
}
p {
margin-top: 18px;
color: #d6d6d6;
line-height: 1.7;
}
.url {
margin: 28px 0;
color: #67e8f9;
word-break: break-word;
font-weight: 600;
}
.btn {
display: inline-block;
margin-top: 12px;
padding: 15px 34px;
border-radius: 14px;
text-decoration: none;
color: #fff;
font-weight: 600;
background: linear-gradient(135deg, #6366f1, #06b6d4);
transition: .3s;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(99, 102, 241, .4);
}
.count {
margin-top: 28px;
color: #9ca3af;
font-size: .95rem;
}
@keyframes pulse {
50% {
transform: scale(1.08);
}
}
@keyframes fade {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="card">
<div class="logo">N</div>
<h1>Welcome to the New Niyad Labs 🚀</h1>
<p>
My portfolio has moved to a new and improved website with a completely
redesigned experience, enhanced performance, interactive 3D visuals,
updated projects, and the latest resume.
</p>
<div class="url">
https://niyad-labs.github.io/
</div>
<a class="btn" href="https://niyad-labs.github.io/">
Visit New Portfolio
</a>
<div class="count">
Redirecting automatically in
<strong><span id="timer">7</span></strong>
seconds...
</div>
</div>
<script>
let seconds = 7;
const timer = document.getElementById("timer");
const interval = setInterval(() => {
seconds--;
timer.textContent = seconds;
if (seconds <= 0) {
clearInterval(interval);
window.location.replace("https://niyad-labs.github.io/");
}
}, 1000);
</script>
</body>
</html>
```