-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 3.05 KB
/
Copy pathindex.html
File metadata and controls
74 lines (74 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NexaCloud — Your Files. Your Privacy.</title>
<meta name="description" content="NexaCloud is a secure private cloud storage platform. Upload, organize, preview and run your files from anywhere." />
</head>
<style>
#app-loading {
position: fixed; inset: 0; z-index: 9999;
display: flex; flex-direction: column; align-items: center; justify-content: center;
background: radial-gradient(ellipse at 50% 40%, #111 0%, #050505 100%);
gap: 24px;
}
#app-loading .logo-wrap {
position: relative; display: flex; align-items: center; justify-content: center;
}
#app-loading .logo-wrap img {
width: 72px; height: 72px; border-radius: 18px; object-fit: cover;
box-shadow: 0 0 40px rgba(99,102,241,0.4);
animation: nc-pulse 2s ease-in-out infinite;
}
#app-loading .ring {
position: absolute; border-radius: 50%; border: 2px solid transparent;
}
#app-loading .ring1 {
width: 100px; height: 100px;
border-top-color: #6366f1;
border-right-color: rgba(99,102,241,0.2);
animation: nc-spin 1.1s linear infinite;
}
#app-loading .ring2 {
width: 128px; height: 128px;
border-bottom-color: rgba(99,102,241,0.15);
animation: nc-spin 2.5s linear infinite reverse;
}
#app-loading .wordmark {
font-family: system-ui, -apple-system, sans-serif;
font-weight: 700; font-size: 18px; color: #fff; letter-spacing: -0.3px;
}
#app-loading .tagline {
font-family: system-ui, -apple-system, sans-serif;
font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px;
}
#app-loading .dots { display: flex; gap: 6px; }
#app-loading .dots span {
width: 6px; height: 6px; border-radius: 50%; background: #6366f1;
animation: nc-bounce 0.8s ease-in-out infinite;
}
#app-loading .dots span:nth-child(2) { animation-delay: 0.15s; }
#app-loading .dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes nc-spin { to { transform: rotate(360deg); } }
@keyframes nc-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes nc-bounce{ 0%,100%{transform:translateY(0);opacity:.4} 50%{transform:translateY(-6px);opacity:1} }
</style>
<body>
<div id="app-loading">
<div class="logo-wrap">
<div class="ring ring1"></div>
<div class="ring ring2"></div>
<img src="https://i.postimg.cc/HnxcmmVK/Chat-GPT-Image-May-22-2026-01-39-42-PM.png" alt="NexaCloud" />
</div>
<div style="display:flex;flex-direction:column;align-items:center;gap:6px">
<div class="wordmark">NexaCloud</div>
<div class="tagline">Your Files. Your Privacy.</div>
</div>
<div class="dots"><span></span><span></span><span></span></div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>