Skip to content

Commit 1c9e2e5

Browse files
committed
chore: emphasize chat box
1 parent 186caed commit 1c9e2e5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

components/ai/landing-chat.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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}

components/ai/search.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)