chore: remove unused static loading page (#15)

This commit is contained in:
Pandipipas
2026-02-10 23:16:33 +01:00
committed by GitHub
parent f3de69decf
commit f7cdf41933
-61
View File
@@ -1,61 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scoreko</title>
<style>
:root {
color-scheme: dark;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: #0f0f0f;
color: #d6d6d6;
}
.card {
text-align: center;
}
.title {
font-size: 24px;
font-weight: 700;
letter-spacing: 0.02em;
}
.subtitle {
margin-top: 8px;
color: #9a9a9a;
}
.spinner {
margin: 24px auto 0;
width: 30px;
aspect-ratio: 1;
border: 3px solid #2f2f2f;
border-top-color: #3b82f6;
border-radius: 50%;
animation: spin 0.9s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="card">
<div class="title">Scoreko</div>
<div class="subtitle">Inicializando NodeCG y dashboard…</div>
<div class="spinner" aria-hidden="true"></div>
</div>
</body>
</html>