Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Commit 4997cbe

Browse files
committed
updated image names to be generic
1 parent 6497f86 commit 4997cbe

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

app/backend/app.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,19 +121,19 @@ async def favicon():
121121
return await bp.send_static_file("favicon.ico")
122122

123123

124-
@bp.route("/chat.png")
124+
@bp.route("/logo.png")
125125
async def chatlogo():
126-
return await bp.send_static_file("chat.png")
126+
return await bp.send_static_file("logo.png")
127127

128128

129129
@bp.route("/CI_Logo_Powered_green.png")
130130
async def CI_logo():
131131
return await bp.send_static_file("CI_Logo_Powered_green.png")
132132

133133

134-
@bp.route("/chatico.png")
134+
@bp.route("/icon.png")
135135
async def chaticon():
136-
return await bp.send_static_file("chatico.png")
136+
return await bp.send_static_file("icon.png")
137137

138138

139139
@bp.route("/assets/<path:path>")
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const AnswerIcon = () => {
2-
return <img src="/chatico.png" aria-hidden="true" aria-label="Answer logo" style={{ width: "32px", height: "32px", padding: "3px" }} />;
2+
return <img src="/icon.png" aria-hidden="true" aria-label="Answer logo" style={{ width: "32px", height: "32px", padding: "3px" }} />;
33
};

app/frontend/src/components/Example/Example.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const Example = ({ exampleType, onClick }: Props) => {
4444
return (
4545
<div className={styles.exampleContainer}>
4646
<div className={styles.header}>
47-
<img src="/chatico.png" className={styles.headerImage} />
47+
<img src="/icon.png" className={styles.headerImage} />
4848
<h3>{exampleType}</h3>
4949
</div>
5050
{textList.map((text, index) => {

app/frontend/src/pages/chat/Chat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ const Chat = () => {
374374
<div className={styles.chatContainer}>
375375
{!lastQuestionRef.current ? (
376376
<div className={styles.chatEmptyState}>
377-
<img className={styles.responsivelogo} src="/chat.png" aria-hidden="true" aria-label="Chat logo" />
377+
<img className={styles.responsivelogo} src="/logo.png" aria-hidden="true" aria-label="Chat logo" />
378378
<h2 className={styles.chatEmptyStateSubtitle}>
379379
Our pilot AI conversation tool. Experience the power of AI generated answers to your small business questions - all grounded on
380380
public facing government websites.

0 commit comments

Comments
 (0)