import { Typography } from 'antd'; import React from 'react'; import { version } from 'tailchat-shared'; import logoUrl from '@assets/images/logo.svg'; import { Icon } from 'tailchat-design'; const { Paragraph, Text, Link } = Typography; const LogoLink: React.FC<{ src: string; icon: React.ReactNode | string; }> = React.memo((props) => { const { src, icon } = props; return ( {typeof icon === 'string' ? : icon} ); }); LogoLink.displayName = 'LogoLink'; export const SettingsAbout: React.FC = React.memo(() => { return (
Tailchat : 属于所有人的开源聊天工具 可供高度自定义的聊天工具 完全独属于私人团队的沟通平台
特性(亮点):
当前版本: {version}
} />
开源地址:{' '} https://github.com/msgbyte/tailchat
); }); SettingsAbout.displayName = 'SettingsAbout';