Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/components/ChatWindow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function ChatWindow({ messages, loading, onSend, sessionId }) {
<AppLogoIcon className="w-14 h-14 text-purple-400 opacity-70" />
<div>
<p className="text-xl font-semibold text-gray-200 mb-1">LocalMind is ready</p>
<p className="text-sm text-gray-500">100% private · runs offline · no cloud</p>
<p className="text-sm text-gray-400">100% private · runs offline · no cloud</p>
</div>
<div className="grid grid-cols-2 gap-2 mt-4 max-w-lg w-full">
{SUGGESTIONS.map(s => (
Expand All @@ -73,7 +73,7 @@ export default function ChatWindow({ messages, loading, onSend, sessionId }) {
<div className="flex items-center gap-1.5 mb-1.5 ml-1">
<AppLogoIcon className="w-4 h-4 text-purple-400" />
<span className="text-xs font-semibold text-purple-400">LocalMind</span>
{msg.streaming && <span className="text-xs text-gray-500 animate-pulse">typing...</span>}
{msg.streaming && <span className="text-xs text-gray-400 animate-pulse">typing...</span>}
</div>
)}
<div className={`px-4 py-3 rounded-2xl text-sm leading-relaxed whitespace-pre-wrap break-words
Expand All @@ -97,7 +97,7 @@ export default function ChatWindow({ messages, loading, onSend, sessionId }) {
)}
{msg.role === "user" && (
<div className="text-right mt-1 mr-1">
<span className="text-xs text-gray-600">You</span>
<span className="text-xs text-gray-400">You</span>
</div>
)}
</div>
Expand Down
Loading