-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
43 lines (43 loc) · 1.66 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<title>DSPanel</title>
</head>
<body>
<div id="root">
<!-- Splash screen shown until React mounts -->
<style>
@keyframes spin{to{transform:rotate(360deg)}}
#splash{display:flex;flex-direction:column;align-items:center;justify-content:center;position:fixed;inset:0;gap:16px;background:#f8f9fa}
@media(prefers-color-scheme:dark){#splash{background:#0f1117}}
html,body{margin:0;overflow:hidden}
</style>
<div id="splash">
<svg width="56" height="56" viewBox="0 0 24 24" fill="none" style="animation:spin 1s linear infinite">
<circle cx="12" cy="12" r="10" stroke="#3b82f6" stroke-width="3" opacity="0.25"/>
<path fill="#3b82f6" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z" opacity="0.75"/>
</svg>
<span style="font-family:Inter,sans-serif;font-size:14px;font-weight:500;color:#6b7280">DSPanel</span>
</div>
</div>
<script>
document.addEventListener(
"contextmenu",
function (e) {
e.preventDefault();
},
true,
);
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>