李富豪 1 gadu atpakaļ
vecāks
revīzija
95ea052ebb
4 mainītis faili ar 5 papildinājumiem un 5 dzēšanām
  1. 1 1
      app/components/Record.tsx
  2. 1 1
      app/components/chat.tsx
  3. 2 2
      app/layout.tsx
  4. 1 1
      app/store/chat.ts

+ 1 - 1
app/components/Record.tsx

@@ -56,7 +56,7 @@ const RecordApp: React.FC = () => {
             <div style={{ padding: '14px 20px', borderBottom: '1px solid rgba(0, 0, 0, 0.1)', display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
                 <div>
                     <div style={{ fontSize: 20, fontWeight: 'bolder' }}>
-                        数字监理员聊天记录
+                        建科·小智聊天记录
                     </div>
                     <div style={{ fontSize: 14 }}>
                         输入账号密码导出全部聊天记录

+ 1 - 1
app/components/chat.tsx

@@ -1460,7 +1460,7 @@ function _Chat() {
               className={`window-header-main-title ${styles["chat-body-main-title"]}`}
             // onClickCapture={() => setIsEditingMessage(true)}
             >
-              数字监理员
+              建科·小智
             </div>
             <div className="window-header-sub-title">
               {Locale.Chat.SubTitle(session.messages.length)}

+ 2 - 2
app/layout.tsx

@@ -10,10 +10,10 @@ import { GoogleTagManager } from "@next/third-parties/google";
 const serverConfig = getServerSideConfig();
 
 export const metadata: Metadata = {
-  title: "数字监理员",
+  title: "建科·小智",
   description: "",
   appleWebApp: {
-    title: "数字监理员",
+    title: "建科·小智",
     statusBarStyle: "default",
   },
 };

+ 1 - 1
app/store/chat.ts

@@ -71,7 +71,7 @@ export interface ChatSession {
 export const DEFAULT_TOPIC = Locale.Store.DefaultTopic;
 export const BOT_HELLO: ChatMessage = createMessage({
   role: "assistant",
-  content: '您好,欢迎使用建科数字监理员,与本项目相关的问题都可以问我。',
+  content: '您好,欢迎使用建科建科·小智,与本项目相关的问题都可以问我。',
 });
 
 function createEmptySession(): ChatSession {