feat: add PWA support with manifest configuration and offline connectivity indicator

This commit is contained in:
poyrazavsever
2026-06-06 21:53:06 +03:00
parent 83379a5edc
commit 4a52deec4d
6 changed files with 2221 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "Cognis",
"short_name": "Cognis",
"description": "Self-hosted freelancer operating dashboard",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"orientation": "portrait",
"scope": "/",
"start_url": "/",
"icons": [
{
"src": "/logo/LogoWithBg.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/logo/LogoWithBg.png",
"sizes": "512x512",
"type": "image/png"
}
]
}