0.36.1: app logo as browser-tab favicon

Add frontend/public/favicon.svg (the TopNav LogoMark glyph as a
standalone SVG) and link it from index.html so the StackPilot logo
shows in browser tabs. Vite copies public/ into dist on build.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
menzelj
2026-06-16 21:24:07 +00:00
co-authored by Claude Opus 4.8
parent cd15cdc75e
commit 5bcec06bbd
4 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
"""Single source of truth for the StackPilot release version."""
APP_VERSION = "0.36.0"
APP_VERSION = "0.36.1"
+1
View File
@@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>StackPilot</title>
</head>
<body>
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "stackpilot-frontend",
"private": true,
"version": "0.36.0",
"version": "0.36.1",
"type": "module",
"scripts": {
"dev": "vite",
+12
View File
@@ -0,0 +1,12 @@
<svg width="32" height="32" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sp-logo-grad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#2741ce" />
<stop offset="100%" stop-color="#7b9bfa" />
</linearGradient>
</defs>
<rect width="30" height="30" rx="9" fill="url(#sp-logo-grad)" />
<path d="M15 7.5 22 11.25 15 15 8 11.25 15 7.5Z" fill="#fff" fill-opacity="0.95" />
<path d="M9.6 14.4 15 17.3l5.4-2.9L22 15.25 15 19 8 15.25l1.6-.85Z" fill="#fff" fill-opacity="0.6" />
<path d="M9.6 18.4 15 21.3l5.4-2.9L22 19.25 15 23 8 19.25l1.6-.85Z" fill="#fff" fill-opacity="0.32" />
</svg>

After

Width:  |  Height:  |  Size: 659 B