This commit is contained in:
TutorialsGHG
2026-04-12 22:04:59 +02:00
commit 13bf50b01e
10 changed files with 3388 additions and 0 deletions

15
pwa/manifest.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "NotifyPulse",
"short_name": "NotifyPulse",
"description": "Multi-usecase notification and wallpaper manager",
"start_url": "/pwa/",
"scope": "/pwa/",
"display": "standalone",
"background_color": "#08080a",
"theme_color": "#08080a",
"orientation": "portrait",
"icons": [
{ "src": "icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" },
{ "src": "icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
]
}