fix: switch app logo based on theme

This commit is contained in:
vansh-nagar
2025-12-26 17:16:12 +05:30
parent 467561df47
commit 571ba3c6b0
2 changed files with 42 additions and 1 deletions

View File

@@ -943,7 +943,11 @@ export default function ChatPanel({
<div className="flex items-center gap-2 overflow-x-hidden">
<div className="flex items-center gap-2">
<Image
src="/favicon.ico"
src={
darkMode
? "/favicon-white.svg"
: "/favicon.ico"
}
alt="Next AI Drawio"
width={isMobile ? 24 : 28}
height={isMobile ? 24 : 28}