From f96d727586559049c9a52c37d40723d85d7172de Mon Sep 17 00:00:00 2001 From: Andrej Spielmann Date: Thu, 26 Mar 2026 14:46:20 +0100 Subject: [PATCH] feat(pwa): add manifest.json for PWA configuration --- frontend/public/manifest.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 frontend/public/manifest.json diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 0000000..294b22e --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,31 @@ +{ + "name": "WrestleDesk", + "short_name": "WrestleDesk", + "description": "Wrestling Club Management System", + "start_url": "/", + "display": "standalone", + "background_color": "#070F2B", + "theme_color": "#1B1A55", + "orientation": "portrait", + "scope": "/", + "icons": [ + { + "src": "/icon-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "any" + }, + { + "src": "/icon-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any" + }, + { + "src": "/icon-maskable.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +}