Skip to content

Commit 92e75ae

Browse files
authored
Merge pull request #52 from nowscott/development
style:修改部分外观
2 parents d3a0252 + 3879fe0 commit 92e75ae

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/components/layout/InputPrompt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const InputPrompt = ({ onSend, onClear }) => {
6060
}}
6161
onCompositionStart={handleCompositionStart}
6262
onCompositionEnd={handleCompositionEnd}
63-
placeholder="发送消息..."
63+
placeholder="發送訊息..."
6464
/>
6565
<button
6666
className="p-1 text-slate-500"

src/components/layout/MessageList.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ const MessageList = ({ messages, onDelete }) => {
7171
{messages.length === 0 ? (
7272
<div className="flex items-center justify-center h-full">
7373
<div className="text-center">
74-
<p className="text-6xl text-gray-500 dark:text-yellow-50 mb-4 tracking-widest">对牛弹琴</p>
75-
<p className="text-sm text-gray-400 dark:text-yellow-100">每一次对话,都是一场思想碰撞</p>
74+
<p className="text-6xl text-gray-500 dark:text-yellow-50 mb-4 tracking-widest">對🐮彈琴</p>
75+
<p className="text-sm text-gray-400 dark:text-yellow-100">每壹次對話,都是壹場思想碰撞</p>
7676
</div>
7777
</div>
7878
) : (

src/components/layout/NavBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const NavBar = ({ targetRef, onSettingsClick }) => {
88
const { darkMode, setDarkMode } = useContext(ThemeContext);
99

1010
const toggleTitle = () => {
11-
setTitle((prevTitle) => (prevTitle === 'Chat With Mou' ? '对牛弹琴' : 'Chat With Mou'));
11+
setTitle((prevTitle) => (prevTitle === 'Chat With Mou' ? '對🐮彈琴' : 'Chat With Mou'));
1212
};
1313

1414
const toggleDarkMode = () => {

0 commit comments

Comments
 (0)