Enhance UI styling and components for Archipelago

- Updated the glass-card and glass-button styles for improved aesthetics and functionality, including gradient borders and hover effects.
- Introduced new info-card and info-card-button components with enhanced styling and interactive features.
- Refactored existing HTML structure to utilize new card components, improving consistency across the UI.
- Enhanced button interactions for better user experience during settings and logs access.
This commit is contained in:
Dorian
2026-02-03 21:49:30 +00:00
parent 337ebee510
commit 47a56e2212
7 changed files with 859 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
server {
listen 8081;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}