From 40a354fd2c19c98953e9761f7b9806aaab65a840 Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Thu, 5 Aug 2021 18:41:04 +0800 Subject: [PATCH] refactor: setting about --- .../components/modals/SettingsView/About.tsx | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) 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';