Skip to content

Commit f9a24ee

Browse files
committed
some more please
1 parent ae156d2 commit f9a24ee

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

frontend/src/components/ChatInterface.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ const ChatInterface: FC = () => {
110110
<div className="py-3 border-bottom">
111111
<h4 className="mb-0 text-center">
112112
<i className="bi bi-chat-dots me-2"></i>
113-
AI Assistant
113+
AI Assistant for Architecture Confluence space
114114
</h4>
115115
<p className="text-muted text-center mb-0 small">
116-
Ask me anything about your data or get help with your questions
116+
Ask me anything about Architecture confluence space topics.
117117
</p>
118118
</div>
119119

@@ -125,7 +125,7 @@ const ChatInterface: FC = () => {
125125
{messages.length === 0 ? (
126126
<div className="text-center text-muted py-5">
127127
<i className="bi bi-chat-quote display-4 mb-3"></i>
128-
<h5>Welcome to AI Assistant</h5>
128+
<h5>Welcome</h5>
129129
<p>Start a conversation by typing your question below</p>
130130
</div>
131131
) : (

frontend/src/components/Layout.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,10 @@ const Layout: FC<Props> = ({ children }) => {
2727
</Link>
2828
{isLoggedIn && (
2929
<div className="d-flex align-items-center gap-3">
30-
<span className="text-white">
30+
<span className="text-dark fw-semibold">
3131
Welcome, {username || 'User'}
3232
</span>
33-
<Button
34-
variant="outline-light"
35-
size="sm"
36-
onClick={handleLogout}
37-
>
33+
<Button variant="outline-dark" size="sm" onClick={handleLogout}>
3834
Sign Out
3935
</Button>
4036
</div>

0 commit comments

Comments
 (0)