Skip to content

Commit 66cccfe

Browse files
authored
Add application icon for Safari and saved-bookmarks (#749)
1 parent a42384f commit 66cccfe

10 files changed

+32
-2
lines changed

ui/index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8" />
4+
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<!-- These are the fonts used in the app -->
77
<link
@@ -27,7 +27,14 @@
2727
/>
2828
<title>JetKVM</title>
2929
<link rel="stylesheet" href="/fonts/fonts.css" />
30-
<link rel="icon" href="/favicon.png" />
30+
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
31+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
32+
<link rel="shortcut icon" href="/favicon.ico" />
33+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
34+
<meta name="apple-mobile-web-app-title" content="JetKVM" />
35+
<link rel="manifest" href="/site.webmanifest" />
36+
<meta name="theme-color" content="#051946" />
37+
<meta name="description" content="A web-based KVM console for managing remote servers." />
3138
<script>
3239
// Initial theme setup
3340
document.documentElement.classList.toggle(

ui/public/apple-touch-icon.png

1.78 KB
Loading

ui/public/favicon-96x96.png

972 Bytes
Loading

ui/public/favicon.ico

14.7 KB
Binary file not shown.

ui/public/favicon.png

-1.46 KB
Loading

ui/public/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

ui/public/jetkvm.svg

Lines changed: 1 addition & 0 deletions
Loading

ui/public/site.webmanifest

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "JetKVM",
3+
"short_name": "JetKVM",
4+
"icons": [
5+
{
6+
"src": "/web-app-manifest-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png",
9+
"purpose": "maskable"
10+
},
11+
{
12+
"src": "/web-app-manifest-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png",
15+
"purpose": "maskable"
16+
}
17+
],
18+
"theme_color": "#002b36",
19+
"background_color": "#051946",
20+
"display": "standalone"
21+
}
1.87 KB
Loading
7.86 KB
Loading

0 commit comments

Comments
 (0)