Skip to content

Commit 74670a2

Browse files
committed
feat: replace favicon for rainbow icon
1 parent 09260a0 commit 74670a2

16 files changed

+54
-25
lines changed

src/components/Head.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ const Head = ({ title, description, image }) => {
5252
<title>{title}</title>
5353
<meta name="description" content={description ?? defaultDescription} />
5454

55-
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
5655
<link
5756
rel="apple-touch-icon"
5857
sizes="180x180"
@@ -71,6 +70,10 @@ const Head = ({ title, description, image }) => {
7170
href="/favicon-16x16.png"
7271
/>
7372
<link rel="manifest" href="/site.webmanifest" />
73+
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
74+
<meta name="msapplication-TileColor" content="#00aba9" />
75+
<meta name="theme-color" content="#ffffff" />
76+
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
7477
<link rel="icon" href="/favicon.ico" sizes="any" />
7578

7679
<meta property="og:type" content="website" />

static/android-chrome-192x192.png

-3.67 KB
Loading

static/android-chrome-512x512.png

-11.1 KB
Loading

static/apple-touch-icon.png

-858 Bytes
Loading

static/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#00aba9</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

static/favicon-16x16.png

-22 Bytes
Loading

static/favicon-32x32.png

-4 Bytes
Loading

static/favicon.ico

0 Bytes
Binary file not shown.

static/favicon.svg

Lines changed: 1 addition & 21 deletions
Loading

static/mstile-144x144.png

6.57 KB
Loading

static/mstile-150x150.png

6.41 KB
Loading

static/mstile-310x150.png

6.92 KB
Loading

static/mstile-310x310.png

13.7 KB
Loading

static/mstile-70x70.png

4.6 KB
Loading

static/safari-pinned-tab.svg

Lines changed: 32 additions & 0 deletions
Loading

static/site.webmanifest

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
{
2+
"name": "",
3+
"short_name": "",
24
"icons": [
35
{
4-
"src": "android-chrome-192x192.png",
6+
"src": "/android-chrome-192x192.png",
57
"sizes": "192x192",
68
"type": "image/png"
79
},
810
{
9-
"src": "android-chrome-512x512.png",
11+
"src": "/android-chrome-512x512.png",
1012
"sizes": "512x512",
1113
"type": "image/png"
1214
}
13-
]
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
1419
}

0 commit comments

Comments
 (0)