Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
/>
<meta name="theme-color" content="#000000" />
<!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> -->
<title>FFXIV 文本检索 - 最终幻想14中英日文游戏全文本检索工具 - 沙之家攻略站</title>
<meta name="description" content="沙之家攻略站 FFXIV 文本检索提供《最终幻想14》游戏中英日文全文本检索的工具。用户可使用本工具检索《最终幻想14》内的任意游戏客户端文本,并提供中、英、日三语种的翻译。">
<title>FFXIV 文本检索 - 最终幻想14中英日文游戏全文本检索工具 - FFCAFE</title>
<meta name="description" content="FFCAFE FFXIV 文本检索提供《最终幻想14》游戏中英日文全文本检索的工具。用户可使用本工具检索《最终幻想14》内的任意游戏客户端文本,并提供中、英、日三语种的翻译。">
</head>
<body>
<noscript>请启用浏览器的 JavaScript 支持以使用本工具。</noscript>
<div aria-hidden style="font-size: 0; color: transparent;">沙之家攻略站 FFXIV 文本检索提供《最终幻想14》游戏中英日文全文本检索的工具。用户可使用本工具检索《最终幻想14》内的任意游戏客户端文本,并提供中、英、日三语种的翻译。</div>
<div aria-hidden style="font-size: 0; color: transparent;">FFCAFE FFXIV 文本检索提供《最终幻想14》游戏中英日文全文本检索的工具。用户可使用本工具检索《最终幻想14》内的任意游戏客户端文本,并提供中、英、日三语种的翻译。</div>
<div id="root"></div>
<script>
window._hmt = [];
Expand Down
23 changes: 4 additions & 19 deletions ui/src/components/TopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,16 @@ function MoreToolsButton() {
)
}

const WIKI_USER_URL =
'https://ff14.huijiwiki.com/wiki/%E7%94%A8%E6%88%B7:%E4%BA%91%E6%B3%BD%E5%AE%9B%E9%A3%8E'
const WEIBO_USER_URL = 'https://weibo.com/u/6364253854'

const MAP_URL = 'https://map.wakingsands.com'
const FFCAFE_URL = 'https://www.ffcafe.cn'

function MoreToolsMenu() {
return (
<Menu>
<MenuDivider title="其它工具" />
<MenuItem
text="交互地图"
icon="map"
onClick={() => window.open(MAP_URL, '_blank')}
/>
<MenuDivider title="关于" />
<MenuItem
text="微博 @云泽宛风"
icon="person"
onClick={() => window.open(WEIBO_USER_URL, '_blank')}
/>
<MenuItem
text="维基 用户:云泽宛风"
icon="edit"
onClick={() => window.open(WIKI_USER_URL, '_blank')}
text="FFCAFE"
icon="globe"
onClick={() => window.open(FFCAFE_URL, '_blank')}
/>
<MenuItem
text="闲聊群 612370226"
Expand Down