feat(ui): theme-aware sidebar logo with dark/light variants (#74)

Replace single sencho-logo.png with dark and light variants that
auto-switch based on the active theme (dark/light/auto system pref).
This commit is contained in:
Anso
2026-03-23 12:11:23 -04:00
committed by GitHub
parent a4e8dceacb
commit b25574a427
5 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -928,7 +928,7 @@ export default function EditorLayout() {
{/* Branding Header */}
<div className="h-16 flex items-center justify-between px-4 border-b border-border">
<div className="flex items-center gap-2">
<img src="/sencho-logo.png" alt="Sencho Logo" className="w-12 h-12" />
<img src={isDarkMode ? '/sencho-logo-dark.png' : '/sencho-logo-light.png'} alt="Sencho Logo" className="w-12 h-12" />
<h1 className="text-2xl font-bold tracking-tight">Sencho</h1>
</div>
<TooltipProvider>