Skip to content

Commit

Permalink
favicon and separate manifest file support
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Keating committed Aug 2, 2023
1 parent ef56560 commit 905b697
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

<link rel="manifest" href='data:application/manifest+json,{ "name": "nvAux", "short_name": "nvAux", "description": "the note-taking app for creative professionals", "icons": [ { "src": "favicon.png", "type": "image/png", "sizes": "512x512" } ], "start_url": "/", "display": "standalone", "background_color": "#000", "theme_color": "#181a1c" }' />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon.png">
<link rel="icon" sizes="192x192" href="/favicon.png">
<link rel="apple-touch-icon" sizes="192x192" href="/favicon.png">

<link
rel="icon"
Expand Down
13 changes: 13 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "nvAux",
"short_name": "nvAux",
"description": "the note-taking app for creative professionals",
"icons": [
{ "src": "favicon.png", "type": "image/png", "sizes": "192x192" },
{ "src": "favicon.png", "type": "image/png", "sizes": "512x512" }
],
"start_url": "/",
"display": "standalone",
"background_color": "#000",
"theme_color": "#181a1c"
}

0 comments on commit 905b697

Please sign in to comment.