diff --git a/web/src/components/modals/SettingsView/About.tsx b/web/src/components/modals/SettingsView/About.tsx index 43c9eec6..bc9adb0f 100644 --- a/web/src/components/modals/SettingsView/About.tsx +++ b/web/src/components/modals/SettingsView/About.tsx @@ -1,6 +1,30 @@ +import { Typography } from 'antd'; import React from 'react'; +import { version } from 'tailchat-shared'; + +const { Paragraph, Text } = Typography; export const SettingsAbout: React.FC = React.memo(() => { - return
关于
; + return ( +
+ + TailChat + : 属于所有人的开源聊天工具 + + 可供高度自定义的聊天工具 + 完全独属于私人团队的沟通平台 + + +
特性(亮点):
+ +
+ + 当前版本: {version} +
+ ); }); SettingsAbout.displayName = 'SettingsAbout';