@mytec: iter2.1 ready for testing

This commit is contained in:
2026-01-31 14:26:11 +02:00
parent cdbf0127bf
commit fa55fec94a
11 changed files with 780 additions and 1 deletions

82
desktop/splash.html Normal file
View File

@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>RFCP Loading</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: white;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-app-region: drag;
user-select: none;
border-radius: 12px;
}
.logo {
font-size: 48px;
font-weight: bold;
margin-bottom: 8px;
background: linear-gradient(90deg, #00d4ff, #00ff88);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle {
font-size: 14px;
color: #888;
margin-bottom: 30px;
}
.loader {
width: 200px;
height: 4px;
background: #333;
border-radius: 2px;
overflow: hidden;
}
.loader-bar {
height: 100%;
width: 30%;
background: linear-gradient(90deg, #00d4ff, #00ff88);
border-radius: 2px;
animation: loading 1.5s ease-in-out infinite;
}
@keyframes loading {
0% { transform: translateX(-100%); }
100% { transform: translateX(400%); }
}
.status {
margin-top: 15px;
font-size: 12px;
color: #666;
}
.version {
position: absolute;
bottom: 15px;
font-size: 11px;
color: #444;
}
</style>
</head>
<body>
<div class="logo">RFCP</div>
<div class="subtitle">RF Coverage Planner</div>
<div class="loader">
<div class="loader-bar"></div>
</div>
<div class="status">Starting backend server...</div>
<div class="version">v1.6.1</div>
</body>
</html>