File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -79,15 +79,15 @@ function ChatView() {
7979 return (
8080 < div
8181 className = { cn (
82- "mx-auto max-w-4xl px-4" ,
82+ "mx-auto max-w-5xl px-4" ,
8383 hasMessages ? "flex min-h-[calc(100vh-4rem)] flex-col py-4" : "py-4"
8484 ) }
8585 >
8686 { /* Hero Section */ }
8787 { ! hasMessages && (
88- < div className = "animate-in fade-in mb-8 space-y-4 text-center duration-500" >
89- < h1 className = "text-5xl font-bold" > Welcome to Recall</ h1 >
90- < p className = "text-muted-foreground text-lg " >
88+ < div className = "animate-in fade-in mb-8 space-y-3 text-center duration-500" >
89+ < h1 className = "text-3xl font-bold" > Welcome to Recall</ h1 >
90+ < p className = "text-muted-foreground text-base " >
9191 The world's first decentralized skill market for AI
9292 </ p >
9393 </ div >
@@ -134,7 +134,7 @@ function ChatInput({
134134 { /* Input field */ }
135135 < form
136136 className = { cn (
137- "bg-fd-background flex flex-row items-center border pe-2 transition-colors" ,
137+ "bg-fd-accent flex flex-row items-center border pe-2 transition-colors" ,
138138 loading && "bg-fd-muted"
139139 ) }
140140 onSubmit = { onStart }
Original file line number Diff line number Diff line change @@ -121,14 +121,14 @@ function AIInput({
121121 { /* Input field */ }
122122 < form
123123 className = { cn (
124- "bg-fd-background flex flex-row items-center border pe-2 transition-colors" ,
124+ "bg-fd-accent flex flex-row items-center border pe-2 transition-colors" ,
125125 loading && "bg-fd-muted"
126126 ) }
127127 onSubmit = { onStart }
128128 >
129129 < Input
130130 value = { message }
131- placeholder = { loading ? "AI is answering... " : "Ask anything... " }
131+ placeholder = { loading ? "AI is answering" : "Ask anything" }
132132 disabled = { loading }
133133 onChange = { ( e ) => {
134134 setMessage ( e . target . value ) ;
You can’t perform that action at this time.
0 commit comments