-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
267 lines (242 loc) · 6.81 KB
/
index.html
File metadata and controls
267 lines (242 loc) · 6.81 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>urCV.ai</title>
<link
rel="icon"
type="image/png"
href="/favicon-96x96.png"
sizes="128x128"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="description" content="N-PCs" />
<meta name="author" content="N-PCs and Others" />
<meta property="og:title" content="urcv-ai-enhance" />
<meta property="og:description" content="Powered by N-PCs" />
<meta property="og:type" content="website" />
<script>
(function () {
const theme = localStorage.getItem("urcv-theme");
if (
theme === "dark" ||
(!theme && window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
}
})();
</script>
<!-- <style>
body { margin: 0; padding: 0; box-sizing: border-box; }
#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: #0f172a;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
will-change: opacity;
transition: opacity 0.6s ease-out;
}
.loader-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 150px;
height: 150px;
}
.ring {
position: absolute;
border-radius: 50%;
animation: rotate 2s linear infinite;
}
.ring:nth-child(1) {
height: 100%;
width: 100%;
border-top: 3px solid #3b82f6;
animation-delay: -0.2s;
filter: drop-shadow(0 0 10px #3b82f6);
}
.ring:nth-child(2) {
height: 70%;
width: 70%;
border-right: 3px solid #8b5cf6;
animation-direction: reverse;
filter: drop-shadow(0 0 10px #8b5cf6);
}
.ring:nth-child(3) {
height: 40%;
width: 40%;
border-bottom: 3px solid #06b6d4;
animation-duration: 1.5s;
filter: drop-shadow(0 0 10px #06b6d4);
}
.loading-text {
position: absolute;
color: white;
font-family: 'Segoe UI', sans-serif;
font-size: 0.9rem;
letter-spacing: 2px;
font-weight: 500;
text-transform: uppercase;
animation: text-pulse 2s ease-in-out infinite;
bottom: -40px;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes text-pulse {
0%, 100% { opacity: 0.5; letter-spacing: 2px; }
50% { opacity: 1; letter-spacing: 4px; text-shadow: 0 0 10px white; }
}
</style> -->
<style>
/* V2: PREMIER SCI-FI LOADER */
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #000;
}
#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
overflow: hidden;
will-change: opacity;
transition: opacity 0.6s ease-out;
}
/* Starfield Background Effect */
.stars {
position: absolute;
width: 100%;
height: 100%;
background-image:
radial-gradient(2px 2px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
background-repeat: repeat;
background-size: 200px 200px;
opacity: 0.3;
animation: zoom 10s infinite linear;
}
.loader-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 160px;
height: 160px;
will-change: transform;
}
.ring {
position: absolute;
border-radius: 50%;
animation: rotate 2s linear infinite;
will-change: transform;
border: 2px solid transparent; /* Cleaner edges */
}
/* Outer Ring - Cyan/Blue */
.ring:nth-child(1) {
height: 100%;
width: 100%;
border-top: 4px solid #00d4ff;
box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
animation-duration: 2s;
}
/* Middle Ring - Purple/Pink */
.ring:nth-child(2) {
height: 70%;
width: 70%;
border-right: 4px solid #ff00e6;
box-shadow: 0 0 15px rgba(255, 0, 230, 0.6);
animation-direction: reverse;
animation-duration: 2.5s;
}
/* Inner Ring - Gold */
.ring:nth-child(3) {
height: 40%;
width: 40%;
border-bottom: 4px solid #ffd700;
box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
animation-duration: 1.5s;
}
.loading-text {
position: absolute;
color: #fff;
font-family: "Courier New", monospace; /* Tech font */
font-size: 0.9rem;
letter-spacing: 4px;
font-weight: 700;
text-transform: uppercase;
animation: text-pulse 2s ease-in-out infinite;
bottom: -50px;
text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes text-pulse {
0%,
100% {
opacity: 0.4;
}
50% {
opacity: 1;
}
}
@keyframes zoom {
0% {
transform: scale(1);
opacity: 0.3;
}
50% {
transform: scale(1.1);
opacity: 0.5;
}
100% {
transform: scale(1);
opacity: 0.3;
}
}
</style>
</head>
<body>
<div id="root">
<div id="loading-screen">
<div class="stars"></div>
<div class="loader-container">
<div class="ring"></div>
<div class="ring"></div>
<div class="ring"></div>
<span class="loading-text">urCV.ai</span>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>