Skip to content

Commit fe03c21

Browse files
committed
Fix favicon configuration for Google Search - Add complete favicon setup with proper ICO, multiple PNG sizes and web manifest
1 parent f8a1a82 commit fe03c21

6 files changed

Lines changed: 33 additions & 2 deletions

File tree

index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@
3333
<link rel="canonical" href="https://firestar300.github.io/SVG-Path-Merger/">
3434

3535
<!-- Favicon -->
36-
<link rel="icon" type="image/png" href="https://firestar300.github.io/SVG-Path-Merger/favicon.png">
37-
<link rel="apple-touch-icon" href="https://firestar300.github.io/SVG-Path-Merger/favicon.png">
36+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
37+
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
38+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
39+
<link rel="icon" type="image/png" sizes="192x192" href="/favicon-192x192.png">
40+
<link rel="apple-touch-icon" sizes="180x180" href="/favicon-192x192.png">
41+
<link rel="manifest" href="/site.webmanifest">
3842

3943
<!-- JSON-LD Structured Data -->
4044
<script type="application/ld+json">

public/favicon-32x32.png

388 Bytes
Loading

public/favicon-512x512.png

2.6 KB
Loading

public/favicon.ico

1.12 KB
Binary file not shown.

public/site.webmanifest

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "SVG Path Merger",
3+
"short_name": "Path Merger",
4+
"description": "Merge SVG paths online - Free tool to combine multiple SVG path elements into a single path",
5+
"icons": [
6+
{
7+
"src": "/SVG-Path-Merger/favicon.svg",
8+
"sizes": "any",
9+
"type": "image/svg+xml",
10+
"purpose": "any maskable"
11+
},
12+
{
13+
"src": "/SVG-Path-Merger/favicon-192x192.png",
14+
"sizes": "192x192",
15+
"type": "image/png"
16+
},
17+
{
18+
"src": "/SVG-Path-Merger/favicon-512x512.png",
19+
"sizes": "512x512",
20+
"type": "image/png"
21+
}
22+
],
23+
"theme_color": "#6366f1",
24+
"background_color": "#ffffff",
25+
"display": "standalone",
26+
"start_url": "/SVG-Path-Merger/"
27+
}

0 commit comments

Comments
 (0)