From c91047243a9d5ce491d42e9d6ec24129e12a3a90 Mon Sep 17 00:00:00 2001 From: ComputelessComputer Date: Mon, 16 Mar 2026 19:39:31 +0900 Subject: [PATCH 1/2] fix: replace chat gif with the static char mark - add the black char logo icon to desktop public assets - swap chat trigger and empty-state headers off dynamic.gif - reduce the trigger icon size so the CTA pill feels less oversized --- apps/desktop/public/assets/char-logo-icon-black.svg | 4 ++++ apps/desktop/src/chat/components/body/empty.tsx | 12 ++++++++++-- apps/desktop/src/chat/components/trigger.tsx | 6 +++--- 3 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 apps/desktop/public/assets/char-logo-icon-black.svg diff --git a/apps/desktop/public/assets/char-logo-icon-black.svg b/apps/desktop/public/assets/char-logo-icon-black.svg new file mode 100644 index 0000000000..22b1a6d720 --- /dev/null +++ b/apps/desktop/public/assets/char-logo-icon-black.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/desktop/src/chat/components/body/empty.tsx b/apps/desktop/src/chat/components/body/empty.tsx index a35c5f5a21..23dca89f26 100644 --- a/apps/desktop/src/chat/components/body/empty.tsx +++ b/apps/desktop/src/chat/components/body/empty.tsx @@ -58,7 +58,11 @@ export function ChatBodyEmpty({
- Char + Char Char AI @@ -84,7 +88,11 @@ export function ChatBodyEmpty({
- Char + Char Char AI
diff --git a/apps/desktop/src/chat/components/trigger.tsx b/apps/desktop/src/chat/components/trigger.tsx index 3c2cacf226..ec2eca60fe 100644 --- a/apps/desktop/src/chat/components/trigger.tsx +++ b/apps/desktop/src/chat/components/trigger.tsx @@ -59,9 +59,9 @@ export function ChatTrigger({ ])} > Chat Assistant Chat with notes , From 27d24e8809d146a857847867aac453e95550a023 Mon Sep 17 00:00:00 2001 From: ComputelessComputer Date: Mon, 16 Mar 2026 19:40:52 +0900 Subject: [PATCH 2/2] fix: refine chat icon spacing and branding - add the black char logo icon to desktop public assets - replace chat gif usage with the static char mark - use the same char mark in the chat panel header title - increase icon/text spacing in the chat trigger and empty state --- apps/desktop/src/chat/components/body/empty.tsx | 2 +- apps/desktop/src/chat/components/header.tsx | 6 +++++- apps/desktop/src/chat/components/trigger.tsx | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/desktop/src/chat/components/body/empty.tsx b/apps/desktop/src/chat/components/body/empty.tsx index 23dca89f26..afa4d85457 100644 --- a/apps/desktop/src/chat/components/body/empty.tsx +++ b/apps/desktop/src/chat/components/body/empty.tsx @@ -87,7 +87,7 @@ export function ChatBodyEmpty({ return (
-
+
Char - + Char

{currentChatTitle || "Ask Char anything"}

diff --git a/apps/desktop/src/chat/components/trigger.tsx b/apps/desktop/src/chat/components/trigger.tsx index ec2eca60fe..4c9d10a19f 100644 --- a/apps/desktop/src/chat/components/trigger.tsx +++ b/apps/desktop/src/chat/components/trigger.tsx @@ -46,7 +46,7 @@ export function ChatTrigger({ onClick={onClick} className={cn([ "fixed right-4 z-40", - "flex h-14 flex-row items-center justify-center gap-1 rounded-full px-4", + "flex h-14 flex-row items-center justify-center gap-2 rounded-full px-4", "bg-white shadow-lg hover:shadow-xl", "border border-neutral-200", "transition-all duration-200 ease-out",