Files
Infraviewer/public/index.html

139 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infraviewer - Wartung</title>
<link rel="icon" type="image/png" href="/images/icons/favicon.png">
<link rel="apple-touch-icon" href="/images/icons/icon-180x180.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.maintenance-container {
background: white;
border-radius: 16px;
padding: 60px 40px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
text-align: center;
max-width: 600px;
width: 100%;
}
.maintenance-icon {
font-size: 5rem;
margin-bottom: 30px;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
}
h1 {
color: #333;
font-size: 2.5rem;
margin-bottom: 20px;
font-weight: 700;
}
.subtitle {
color: #666;
font-size: 1.2rem;
margin-bottom: 30px;
line-height: 1.6;
}
.info-box {
background: #f5f5f5;
border-left: 4px solid #667eea;
padding: 20px;
border-radius: 8px;
margin: 30px 0;
text-align: left;
}
.info-box p {
color: #555;
margin-bottom: 10px;
}
.info-box p:last-child {
margin-bottom: 0;
}
.dev-link {
display: inline-block;
margin-top: 30px;
padding: 15px 30px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
}
.dev-link:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}
@media (max-width: 768px) {
.maintenance-container {
padding: 40px 30px;
}
h1 {
font-size: 2rem;
}
.maintenance-icon {
font-size: 4rem;
}
}
</style>
</head>
<body>
<div class="maintenance-container">
<div class="maintenance-icon">🔧</div>
<h1>Grade unter Wartung</h1>
<p class="subtitle">
Die Anwendung wird derzeit gewartet und ist vorübergehend nicht verfügbar.
</p>
<div class="info-box">
<p><strong>Was passiert gerade?</strong></p>
<p>Wir arbeiten an Verbesserungen und Updates für die Infraviewer-Anwendung.</p>
</div>
<div class="info-box">
<p><strong>Wann ist die Anwendung wieder verfügbar?</strong></p>
<p>Die Wartungsarbeiten werden voraussichtlich in Kürze abgeschlossen sein.</p>
</div>
<a href="/dev.html" class="dev-link">Entwicklungsversion öffnen</a>
</div>
</body>
</html>