fix(ui): use local tabby icon (#1020)

main
Meng Zhang 2023-12-11 15:24:08 +08:00 committed by GitHub
parent eac6edee96
commit d1563d82cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

BIN
ee/tabby-ui/assets/tabby.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

View File

@ -2,6 +2,7 @@
// @see https://github.com/mckaywrigley/chatbot-ui/blob/main/components/Chat/ChatMessage.tsx
import Image from 'next/image'
import tabbyLogo from '@/assets/tabby.png'
import { Message } from 'ai'
import remarkGfm from 'remark-gfm'
import remarkMath from 'remark-math'
@ -93,7 +94,7 @@ function IconTabby() {
return (
<Image
style={{ borderRadius: 4 }}
src="https://avatars.githubusercontent.com/u/125617854?s=128&v=4"
src={tabbyLogo}
alt="tabby"
width="128"
height="128"