Add app favicon (orange bar-chart) and fix favicon 404
All checks were successful
Build and Push Docker Images / build-and-push (push) Successful in 20s

Replace the missing /vite.svg reference with a bundled SVG favicon and
set the document title to 'Etsy Finance Tracker'.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
dlawler489 2026-06-20 08:28:12 +10:00
parent f0ee1289e1
commit 2f1dff6273
2 changed files with 10 additions and 2 deletions

View file

@ -2,9 +2,9 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Etsy Business Tracker</title> <title>Etsy Finance Tracker</title>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>

View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<rect width="32" height="32" rx="7" fill="#F1641E"/>
<rect x="6" y="18" width="5" height="8" rx="1.5" fill="#ffffff"/>
<rect x="13.5" y="13" width="5" height="13" rx="1.5" fill="#ffffff"/>
<rect x="21" y="8" width="5" height="18" rx="1.5" fill="#ffffff"/>
<path d="M6 13 L13 9 L19 11 L26 5" fill="none" stroke="#ffffff" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" opacity="0.65"/>
</svg>

After

Width:  |  Height:  |  Size: 490 B