Files
WGDashboard/src/static/client/dist/client.html

44 lines
1.5 KiB
HTML
Raw Normal View History

2025-06-03 14:49:56 +08:00
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
2025-08-17 15:24:53 +08:00
<link rel="icon" href="/static/client/dist/img/Logo-2-128x128.png">
2025-06-03 14:49:56 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-06-29 16:11:05 +08:00
<title>WGDashboard Client</title>
<style>
*{
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#preloader{
width: 100vw; height: 100vh; display: flex
}
#preloader_placeholder{
width: 50px; height: 50px; background-color: #000; margin: auto;
animation: 3s ease-in-out fadeInPreloader infinite;
}
@keyframes fadeInPreloader {
0%{
opacity: 0;
}
50%{
opacity: 1;
}
100%{
opacity: 0;
}
}
</style>
2025-08-17 15:24:53 +08:00
<script type="module" crossorigin src="/static/client/dist/assets/index-Cun74Xi8.js"></script>
<link rel="stylesheet" crossorigin href="/static/client/dist/assets/index-tn8r-uDQ.css">
2025-06-03 14:49:56 +08:00
</head>
<body>
2025-06-29 16:11:05 +08:00
<div id="app">
<div id="preloader">
<div id="preloader_placeholder">
2025-08-17 15:24:53 +08:00
<img style="width: 100%" src="/static/client/dist/img/Logo-2-128x128.png" alt="WGDashboard Client" />
2025-06-29 16:11:05 +08:00
</div>
</div>
</div>
2025-06-03 14:49:56 +08:00
</body>
</html>