add stat + control links

This commit is contained in:
2026-04-08 13:23:00 +03:00
parent b803989bd0
commit 78aafd4112
+41 -1
View File
@@ -49,7 +49,43 @@
h1 {
color: #333;
font-size: 24px;
margin: 0;
margin: 0 0 30px 0;
}
.links {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 20px;
}
.link-button {
display: block;
padding: 12px 20px;
text-decoration: none;
color: #fff;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 8px;
font-weight: bold;
transition: all 0.3s ease;
font-size: 14px;
}
.link-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}
.link-button:active {
transform: translateY(0);
}
.link-stat {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.link-control {
background: linear-gradient(135deg, #6dd5fa 0%, #2980b9 100%);
}
</style>
</head>
@@ -57,6 +93,10 @@
<div class="status-container">
<div class="checkmark"></div>
<h1>Сервер рестрима работает</h1>
<div class="links">
<a href="/stat" class="link-button link-stat">Статистика (/stat)</a>
<a href="/control" class="link-button link-control">Управление (/control)</a>
</div>
</div>
</body>
</html>