Files
um-react/src/faq/OtherFAQ.tsx
2025-05-19 09:23:14 +09:00

110 lines
4.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { ExtLink } from '~/components/ExtLink';
import { Header2, Header3, Header4 } from '~/components/HelpText/Headers';
import { ProjectIssue } from '~/components/ProjectIssue';
import { NavLink } from 'react-router';
export function OtherFAQ() {
return (
<>
<Header2></Header2>
<Header3 id="metadata"></Header3>
<p></p>
<p>使</p>
<Header3 id="batch-dl"></Header3>
<p>
{'暂时没有实现,不过你可以在 '}
<ProjectIssue id={34} title="[UI] 全部下载功能" />
{' 以及 '}
<ProjectIssue id={43} title="批量下载" />
{' 追踪该问题。'}
</p>
<Header3 id="android-browsers">安卓: 浏览器支持说明</Header3>
<p> 使 Chrome Firefox </p>
<div className="flex flex-col md:flex-row gap-2 md:gap-8">
<div>
<Header4></Header4>
<ul className="list-disc list-inside pl-2">
<li>Via </li>
<li></li>
<li>UC </li>
</ul>
</div>
<div>
<Header4></Header4>
<ul className="list-disc list-inside pl-2">
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<Header3 id="android-root"> root</Header3>
<p>
root 使
使 NFC
</p>
<p className="my-2">
使
<NavLink className="link link-info" to="/questions/android-emu">
</NavLink>
</p>
<Header3 id="projects"></Header3>
<ul className="list-disc pl-6">
<li>
<p>
<ExtLink className="mr-2" href="https://github.com/CarlGao4/um-react-electron">
<strong>
<code>um-react-electron</code>
</strong>
</ExtLink>
Electron WindowsLinux Mac
</p>
<ul className="list-disc pl-6">
<li>
<p>
<ExtLink href="https://github.com/CarlGao4/um-react-electron/releases/latest">GitHub </ExtLink>
</p>
</li>
</ul>
</li>
<li>
<p>
<ExtLink className="mr-2" href="https://git.unlock-music.dev/um/um-react-wry">
<strong>
<code>um-react-wry</code>
</strong>
</ExtLink>
使 WRY Win64
<ExtLink href="https://go.microsoft.com/fwlink/p/?LinkId=2124703"> Edge WebView2 </ExtLink>
{'Win10+ 操作系统自带)'}
</p>
<ul className="list-disc pl-6">
<li>
<p>
<ExtLink href="https://git.unlock-music.dev/um/um-react/releases/latest"></ExtLink>
{' | 寻找文件名为 '}
<code>um-react-win64-</code>
</p>
</li>
</ul>
</li>
</ul>
<Header3 id="more-questions"></Header3>
<p className="flex flex-row gap-1">
<ExtLink href={'https://t.me/unlock_music_chat'}>- </ExtLink>
</p>
</>
);
}