Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/desktop/public/assets/char-logo-icon-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions apps/desktop/src/chat/components/body/empty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ export function ChatBodyEmpty({
<div className="flex justify-start px-3 py-2 pb-4">
<div className="flex max-w-[80%] min-w-[240px] flex-col">
<div className="mb-2 flex items-center gap-2">
<img src="/assets/dynamic.gif" alt="Char" className="h-5 w-5" />
<img
src="/assets/char-logo-icon-black.svg"
alt="Char"
className="size-4 object-contain"
/>
<span className="text-sm font-medium text-neutral-800">
Char AI
</span>
Expand All @@ -83,8 +87,12 @@ export function ChatBodyEmpty({
return (
<div className="flex justify-start px-3 pb-4">
<div className="flex max-w-[80%] min-w-[240px] flex-col">
<div className="mb-2 flex items-center gap-1">
<img src="/assets/dynamic.gif" alt="Char" className="h-5 w-5" />
<div className="mb-2 flex items-center gap-2">
<img
src="/assets/char-logo-icon-black.svg"
alt="Char"
className="size-4 object-contain"
/>
<span className="text-sm font-medium text-neutral-800">Char AI</span>
<BetaChip />
</div>
Expand Down
6 changes: 5 additions & 1 deletion apps/desktop/src/chat/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ function ChatGroups({
variant="ghost"
className="group flex h-auto max-w-full min-w-0 justify-start gap-2 px-2 py-1.5"
>
<MessageCircle className="h-3.5 w-3.5 shrink-0 text-neutral-400 transition-colors group-hover:text-neutral-600" />
<img
src="/assets/char-logo-icon-black.svg"
alt="Char"
className="size-[13px] shrink-0 object-contain opacity-55 transition-opacity group-hover:opacity-75"
/>
<h3 className="min-w-0 flex-1 truncate text-xs font-medium text-neutral-700">
{currentChatTitle || "Ask Char anything"}
</h3>
Expand Down
8 changes: 4 additions & 4 deletions apps/desktop/src/chat/components/trigger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -59,9 +59,9 @@ export function ChatTrigger({
])}
>
<img
src="/assets/dynamic.gif"
alt="Chat Assistant"
className="size-8 object-contain"
src="/assets/char-logo-icon-black.svg"
alt="Char"
className="size-[18px] shrink-0 object-contain"
/>
<span className="text-md font-medium">Chat with notes</span>
</button>,
Expand Down
Loading