From 3a7e6f82add1f3e3ced316451f020760f8bac20e Mon Sep 17 00:00:00 2001 From: Atharva Naik Date: Mon, 13 Apr 2026 14:26:45 +0530 Subject: [PATCH] feat: add PWA manifest.json --- frontend/index.html | 1 + frontend/public/manifest.json | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 frontend/public/manifest.json diff --git a/frontend/index.html b/frontend/index.html index 8634b658..6b6278da 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,6 +3,7 @@ + Chainvoice | Stability Nexus diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 00000000..ed14b123 --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "Chainvoice | Stability Nexus", + "short_name": "Chainvoice", + "description": "Decentralized Invoicing Platform by Stability Nexus. Create, manage, and pay invoices securely on the blockchain.", + "start_url": "/", + "display": "standalone", + "background_color": "#ffffff", + "theme_color": "#ffffff", + "icons": [ + { + "src": "/correct.svg", + "sizes": "any", + "type": "image/svg+xml" + }, + { + "src": "/logo.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}