refactor: replace PNG logos with SVG (#1559)

Swap sencho-logo PNGs for SVGs in frontend/public. Update all references
in index.html, SidebarBrand.tsx, and README.md.
This commit is contained in:
Anso
2026-07-03 23:29:27 -04:00
committed by GitHub
parent 4a350e7a0a
commit 1fac6f797f
7 changed files with 14 additions and 6 deletions
@@ -6,7 +6,7 @@ export function SidebarBrand({ isDarkMode }: SidebarBrandProps) {
return (
<div className="flex items-center justify-center gap-3 px-4 h-14 border-b border-glass-border">
<img
src={isDarkMode ? '/sencho-logo-dark.png' : '/sencho-logo-light.png'}
src={isDarkMode ? '/sencho-logo-dark.svg' : '/sencho-logo-light.svg'}
alt=""
className="w-9 h-9 shrink-0"
/>