92 lines
2.6 KiB
HTML
92 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta
|
|
name="description"
|
|
content="Status Page - Monitor your services"
|
|
/>
|
|
<title>Status Page</title>
|
|
<style>
|
|
/* Initial loading styles - shown before React loads */
|
|
#initial-loader {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #0f0f1e;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
z-index: 9999;
|
|
opacity: 1;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
#initial-loader.hidden {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.initial-spinner {
|
|
width: 48px;
|
|
height: 48px;
|
|
position: relative;
|
|
}
|
|
|
|
.initial-spinner div {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 3px solid #6366f1;
|
|
border-radius: 50%;
|
|
animation: initial-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
border-color: #6366f1 transparent transparent transparent;
|
|
}
|
|
|
|
.initial-spinner div:nth-child(1) { animation-delay: -0.45s; }
|
|
.initial-spinner div:nth-child(2) { animation-delay: -0.3s; }
|
|
.initial-spinner div:nth-child(3) { animation-delay: -0.15s; }
|
|
|
|
@keyframes initial-spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.initial-loader-text {
|
|
color: #cbd5e1;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
animation: initial-pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes initial-pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.5; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="initial-loader">
|
|
<div class="initial-spinner">
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
</div>
|
|
<p class="initial-loader-text">Loading Status Page...</p>
|
|
</div>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|