feat: add author footer to all pages (GitHub, Boosty, Support, @Iot_andrey)

- Footer on dashboard, login, Telegram Mini App
- Author section in README
- Consistent styling across light/dark themes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Андрей Бобырев
2026-05-20 12:55:45 +03:00
parent 68b4521ae9
commit f5726561ea
5 changed files with 42 additions and 0 deletions

View File

@@ -600,6 +600,26 @@ main {
overflow: hidden;
}
/* Footer */
.app-footer {
text-align: center;
padding: 24px 16px 16px;
font-size: 13px;
color: var(--text-secondary);
opacity: 0.5;
}
.app-footer a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s;
}
.app-footer a:hover {
color: var(--accent);
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
main { padding: 16px; }