Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "ClarityVault2026",
"short_name": "ClarityVault2026",
"short_name": "ClarityVault",
"start_url": ".",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#0d6efd",
"description": "ClarityVault2026 - Multi-chain crypto wallet for Bitcoin, Ethereum, and Stacks with clarity-driven UI.",
"theme_color": "#00BFFF",
"description": "A modern, secure, and user-friendly multi-chain crypto wallet for managing Bitcoin, Ethereum, and Stacks.",
"icons": [
{
"src": "/icons/icon-192.png",
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/icon-512.png",
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
Comment on lines 9 to 19
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better Progressive Web App (PWA) support, especially on Android devices, it's a good practice to add the purpose property to your icons. Adding "purpose": "any maskable" will allow the user agent to adapt your icon for different shapes, ensuring it looks great on all devices. You already seem to be using this in another manifest file (public/public/manifest.json), so applying it here would improve consistency and user experience.

Here's how you could update the icons array:

  "icons": [
    {
      "src": "/icons/icon-192x192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-512x512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any maskable"
    }
  ]

Expand Down
Loading