Skip to content

Commit 4639014

Browse files
committed
add favicon
1 parent 9d91bab commit 4639014

9 files changed

+34
-0
lines changed

app/public/icons/apple-touch-icon.png

10 KB
Loading

app/public/icons/favicon-96x96.png

5.18 KB
Loading

app/public/icons/favicon.ico

14.7 KB
Binary file not shown.

app/public/icons/favicon.svg

+3
Loading
9.99 KB
Loading
41.5 KB
Loading

app/public/site.webmanifest

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Keygen Self Service Portal",
3+
"short_name": "KeygenSSP",
4+
"icons": [
5+
{
6+
"src": "/icons/web-app-manifest-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png",
9+
"purpose": "maskable"
10+
},
11+
{
12+
"src": "/icons/web-app-manifest-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png",
15+
"purpose": "maskable"
16+
}
17+
],
18+
"theme_color": "#ffffff",
19+
"background_color": "#ffffff",
20+
"display": "standalone"
21+
}

app/views/admin/dashboard.ejs

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Admin Dashboard</title>
77
<link rel="stylesheet" href="/css/styles.css">
8+
<link rel="icon" type="image/png" href="/icons/favicon-96x96.png" sizes="96x96" />
9+
<link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" />
10+
<link rel="shortcut icon" href="/icons/favicon.ico" />
11+
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
12+
<link rel="manifest" href="/site.webmanifest" />
813
</head>
914
<body>
1015
<div class="theme-toggle-container">

app/views/user/dashboard.ejs

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Licensing Portal</title>
77
<link rel="stylesheet" href="/css/styles.css">
8+
<link rel="icon" type="image/png" href="/icons/favicon-96x96.png" sizes="96x96" />
9+
<link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" />
10+
<link rel="shortcut icon" href="/icons/favicon.ico" />
11+
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
12+
<link rel="manifest" href="/site.webmanifest" />
813
</head>
914
<body>
1015
<div class="theme-toggle-container">

0 commit comments

Comments
 (0)