File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import {
1010} from "@/components/ui/dropdown-menu" ;
1111import clsx from "clsx" ;
1212import {
13- BotIcon ,
1413 ChevronDownIcon ,
1514 MenuIcon ,
15+ MessageCircleIcon ,
1616 TableOfContentsIcon ,
1717} from "lucide-react" ;
1818import Link from "next/link" ;
@@ -227,7 +227,7 @@ export function Header() {
227227 router . push ( "/chat" ) ;
228228 } }
229229 >
230- < BotIcon className = "mr-2 size-4" />
230+ < MessageCircleIcon className = "mr-2 size-4" />
231231 Ask AI
232232 </ Button >
233233 </ div >
@@ -254,7 +254,7 @@ export function Header() {
254254 className = "p-2"
255255 onClick = { ( ) => router . push ( "/chat" ) }
256256 >
257- < BotIcon className = "size-7" />
257+ < MessageCircleIcon className = "size-7" />
258258 </ Button >
259259 < Button
260260 variant = "ghost"
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import { MarkdownRenderer } from "@/components/markdown/MarkdownRenderer";
44import { LoadingDots } from "@/components/ui/LoadingDots" ;
55import { Button } from "@/components/ui/button" ;
66import { AutoResizeTextarea } from "@/components/ui/textarea" ;
7- import siwaIcon from "@/icons/siwa-icon.png" ;
87import { cn } from "@/lib/utils" ;
8+ import { MessageCircleIcon } from "lucide-react" ;
99import { ArrowUpIcon , ThumbsDownIcon , ThumbsUpIcon } from "lucide-react" ;
1010import { usePostHog } from "posthog-js/react" ;
1111import {
@@ -38,7 +38,7 @@ function ChatEmptyState({
3838} : { onPromptClick : ( prompt : string ) => void } ) {
3939 return (
4040 < div className = "flex flex-col items-center justify-center space-y-8 py-16 text-center" >
41- < img src = { siwaIcon . src } alt = "SIWA" className = "size-16" />
41+ < MessageCircleIcon className = "size-16" />
4242
4343 < h2 className = "font-semibold text-3xl text-foreground" >
4444 How can I help you < br />
You can’t perform that action at this time.
0 commit comments