feat: Implement PWA support, responsive drawer layout, and custom context menu

This commit is contained in:
spinline
2026-01-31 20:19:42 +03:00
parent 591d09c36d
commit 432bc7b9e9
12 changed files with 546 additions and 91 deletions

View File

@@ -5,16 +5,35 @@
"display": "standalone",
"background_color": "#111827",
"theme_color": "#000000",
"orientation": "any",
"icons": [
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "any maskable"
}
],
"screenshots": [
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png",
"form_factor": "wide",
"label": "Desktop Home Screen"
},
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png",
"form_factor": "narrow",
"label": "Mobile Home Screen"
}
]
}