(Fix) banners layout, update notifications behavior,

and update Dockerfile

(fix) - Adjusted banner sizes
(fix) - Notifications no longer show on mobile if already read
(feat) - Updated Dockerfile for proper build and deployment
This commit is contained in:
2025-11-25 16:35:55 +03:30
parent 3dae41fa25
commit 8ee18c218c
13 changed files with 420 additions and 324 deletions

9
nginx.conf Normal file
View File

@@ -0,0 +1,9 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}