Skip to content

Commit

Permalink
add favicon and manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin M committed Sep 20, 2024
1 parent b1c89f3 commit acd5cf8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
<link rel="stylesheet" href="www/lib/codemirror/lib/codemirror.css" charset="utf-8">
<link rel="stylesheet" href="www/lib/codemirror/theme/tomorrow-night.css" charset="utf-8">
<link rel="stylesheet" href="css/main.css?cachebust=2" charset="utf-8">
<link rel="apple-touch-icon" href="/img/icon-512.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="manifest" href="/manifest.json">
<link rel="icon" type="image/png" href="/img/icon-512.png">
</head>
<body>
<header id="header">
Expand Down
24 changes: 24 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"id": "online-json-diff",
"name": "Online JSON Diff",
"short_name": "JSON DIff",
"description": "Online JSON Compare Diff Finder",
"start_url": "https://www.json-diff.com",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#000000",
"icons": [
{
"purpose": "any",
"src": "/img/icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"purpose":"maskable",
"src": "/img/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}

0 comments on commit acd5cf8

Please sign in to comment.