File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,11 @@ export function ChatPanel({
82
82
) }
83
83
>
84
84
{ messages . length === 0 && (
85
- < div className = "mb-8 " >
85
+ < div className = "mb-10 flex flex-col items-center gap-4 " >
86
86
< IconLogo className = "size-12 text-muted-foreground" />
87
+ < p className = "text-center text-3xl font-semibold" >
88
+ How can I help you today?
89
+ </ p >
87
90
</ div >
88
91
) }
89
92
< form
@@ -105,7 +108,7 @@ export function ChatPanel({
105
108
placeholder = "Ask a question..."
106
109
spellCheck = { false }
107
110
value = { input }
108
- className = "resize-none w-full min-h-12 bg-transparent border-0 px-4 py-3 text-sm placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50"
111
+ className = "resize-none w-full min-h-12 bg-transparent border-0 p-4 text-sm placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50"
109
112
onChange = { e => {
110
113
handleInputChange ( e )
111
114
setShowEmptyScreen ( e . target . value . length === 0 )
You can’t perform that action at this time.
0 commit comments