refactor: faq => version

This commit is contained in:
Tristan Yang
2022-12-25 14:09:20 +08:00
parent 498e456632
commit 48329f5442
5 changed files with 15 additions and 14 deletions
@@ -2,8 +2,8 @@ import { FC } from "react";
import { useTranslation } from "react-i18next";
import { useGetServerVersionQuery } from "../../app/services/server";
type Props = {};
const FAQ: FC<Props> = () => {
const { t } = useTranslation("setting", { keyPrefix: "faq" });
const Version: FC<Props> = () => {
const { t } = useTranslation("setting", { keyPrefix: "version" });
const { data: serverVersion } = useGetServerVersionQuery();
return (
<div className="flex flex-col gap-3">
@@ -13,4 +13,4 @@ const FAQ: FC<Props> = () => {
</div>
);
};
export default FAQ;
export default Version;
+6 -5
View File
@@ -9,7 +9,7 @@ import Widget from "./Widget";
import BotConfig from "./BotConfig";
import APIDocument from "./APIDocument";
import ManageMembers from "../../common/component/ManageMembers";
import FAQ from "../../common/component/FAQ";
import Version from "../../common/component/Version";
// import ConfigAgora from "./config/Agora";
import { useAppSelector } from "../../app/store";
import { useTranslation } from "react-i18next";
@@ -80,8 +80,8 @@ const navs = [
component: <APIDocument />
},
{
name: "faq",
component: <FAQ />
name: "version",
component: <Version />
},
{
name: "terms",
@@ -92,9 +92,10 @@ const navs = [
component: <ul className="flex flex-col gap-2 text-lg">
<li>Email: <strong className="font-bold">han@privoce.com</strong></li>
<li>Wechat: <strong className="font-bold">Privoce</strong></li>
<li>Github:
<li>Github:&nbsp;
<strong className="font-bold">
<a className="text-[#06b6d4] underline underline-offset-2" href="https://github.com/Privoce/vocechat-web/issues" target="_blank" rel="noopener noreferrer">vocechat-web/issues</a> </strong>
<a className="text-[#06b6d4] underline underline-offset-2" href="https://github.com/Privoce/vocechat-web/issues" target="_blank" rel="noopener noreferrer">vocechat-web/issues</a>
</strong>
</li>
</ul>
}