Files
landingpage/index.html
2026-01-16 22:26:25 +00:00

167 lines
5.1 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Helios Server</title>
<link rel="icon" type="image/png" href="https://img.icons8.com/ios-filled/50/1793d1/sun--v1.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Grundlayout */
body {
background-color: #1e1e1e;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
display: flex;
justify-content: center; /* Zentriert alles horizontal */
min-height: 100vh;
}
/* Der Hauptcontainer - hält alles zusammen */
.container {
width: 90%;
max-width: 800px; /* Nicht breiter als 800px */
text-align: center;
padding-top: 50px;
}
/* Navigation oben rechts */
.nav-bar {
position: absolute;
top: 20px;
right: 20px;
}
.nav-link {
color: #888;
font-size: 24px;
text-decoration: none;
transition: color 0.3s;
}
.nav-link:hover { color: #1793d1; }
/* Texte */
h1 { font-size: 3rem; margin-bottom: 10px; color: #fff; letter-spacing: 2px; }
.subtitle { color: #1793d1; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;}
p { color: #aaa; line-height: 1.6; margin-bottom: 30px; }
/* Terminal Style */
.terminal {
background-color: #111;
border-left: 3px solid #1793d1;
padding: 20px;
font-family: 'Courier New', monospace;
text-align: left;
border-radius: 5px;
margin-bottom: 50px; /* Abstand nach unten zu den Games */
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.prompt { color: #2ecc71; }
.path { color: #3498db; }
.command { color: #e0e0e0; }
.cursor {
display: inline-block; width: 8px; height: 15px; background: #e0e0e0;
animation: blink 1s infinite; vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }
/* --- NEU: DASHBOARD GRID FÜR SPIELE --- */
.apps-title {
text-align: left;
margin-bottom: 20px;
font-weight: 300;
border-bottom: 1px solid #333;
padding-bottom: 10px;
color: #fff;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Automatische Spalten */
gap: 20px; /* Abstand zwischen den Karten */
}
/* Das Design der Karten */
.app-card {
background-color: #2a2a2a;
padding: 20px;
border-radius: 12px;
text-decoration: none;
color: white;
display: flex;
align-items: center;
gap: 15px;
transition: transform 0.2s, background-color 0.2s;
border: 1px solid #333;
}
.app-card:hover {
transform: translateY(-5px); /* Schwebe-Effekt */
background-color: #333;
border-color: #555;
}
.app-icon { font-size: 30px; }
/* Spezifische Farben für die Icons */
.icon-darts { color: #e67e22; }
.icon-games { color: #9b59b6; }
.app-info h3 { margin: 0; font-size: 18px; }
.app-info span { font-size: 12px; color: #888; }
</style>
</head>
<body>
<div class="nav-bar">
<a href="https://admin.helios.giize.com" class="nav-link" title="Server Admin">
<i class="fa-solid fa-server"></i>
</a>
</div>
<div class="container">
<span class="subtitle">Status: Online</span>
<h1>HELIOS</h1>
<p>
Große Dinge haben kleine Anfänge. Diese Präsenz befindet sich derzeit im Aufbau.
Schau später wieder vorbei, um Projekte rund um Entwicklung, Datenanalyse und mehr zu sehen.
</p>
<div class="terminal">
<span class="prompt">[admin@helios</span> <span class="path">~]$</span>
<span class="command">./deploy-projects.sh --active</span><span class="cursor"></span>
</div>
<h2 class="apps-title">Apps & Dashboard</h2>
<div class="dashboard-grid">
<a href="/darts/" class="app-card">
<div class="app-icon icon-darts">🎯</div>
<div class="app-info">
<h3>Darts Counter</h3>
<span>Scoreboard & Stats</span>
</div>
</a>
<a href="/games/" class="app-card">
<div class="app-icon icon-games">🕹️</div>
<div class="app-info">
<h3>Arcade</h3>
<span>Sammlung</span>
</div>
</a>
</div>
<br><br><br>
</div>
</body>
</html>