tiefen_space_web/app/doc/[title]/IosHowToInstall.jsx

73 lines
2.4 KiB
React
Raw Normal View History

2024-01-03 01:07:16 +08:00
import Link from "next/link";
import React from "react";
export default function IosHowToInstall() {
return (
<section className="flex flex-col">
<h1 className="text-white text-2xl font-medium">
铁粉空间
<Link className="ml-4 text-xl link-primary link" href="/">
点击下载
</Link>
</h1>
<p className="text-error mt-2">*安装新版本时请先卸载老版本铁粉空间</p>
<p className="text-error">
*下载完需要信任证书才可以使用哦~详细注意事项请见下方教程每次更新可能需要重新信任
</p>
<h1 className="text-white text-2xl font-medium mt-4">操作指引</h1>
<p className="text-white text-base mt-2">1打开设置</p>
2024-06-14 23:34:23 +08:00
<img
className="w-80 self-center"
2024-06-15 00:56:04 +08:00
src={
process.env.NEXT_PUBLIC_CDN_URL + "/public/images/iosinstall_1.png"
}
2024-06-14 23:34:23 +08:00
alt=""
/>
2024-01-03 01:07:16 +08:00
<p className="text-white text-base mt-2">2点击通用</p>
2024-06-14 23:34:23 +08:00
<img
className="w-80 self-center"
2024-06-15 00:56:04 +08:00
src={
process.env.NEXT_PUBLIC_CDN_URL + "/public/images/iosinstall_2.png"
}
2024-06-14 23:34:23 +08:00
alt=""
/>
2024-01-03 01:07:16 +08:00
<p className="text-white text-base mt-2">3点击VPN与设备管理</p>
2024-06-14 23:34:23 +08:00
<img
className="w-80 self-center"
2024-06-15 00:56:04 +08:00
src={
process.env.NEXT_PUBLIC_CDN_URL + "/public/images/iosinstall_3.png"
}
2024-06-14 23:34:23 +08:00
alt=""
/>
2024-01-03 01:07:16 +08:00
<p className="text-white text-base mt-2">4点击证书</p>
2024-06-14 23:34:23 +08:00
<img
className="w-80 self-center"
2024-06-15 00:56:04 +08:00
src={
process.env.NEXT_PUBLIC_CDN_URL + "/public/images/iosinstall_4.png"
}
2024-06-14 23:34:23 +08:00
alt=""
/>
2024-01-03 01:07:16 +08:00
<p className="text-white text-base mt-2">5点击信任证书</p>
2024-06-14 23:34:23 +08:00
<img
className="w-80 self-center"
2024-06-15 00:56:04 +08:00
src={
process.env.NEXT_PUBLIC_CDN_URL + "/public/images/iosinstall_5.png"
}
2024-06-14 23:34:23 +08:00
alt=""
/>
2024-01-03 01:07:16 +08:00
<p className="text-white text-base mt-2">6在弹出页点击信任</p>
2024-06-14 23:34:23 +08:00
<img
className="w-80 self-center"
2024-06-15 00:56:04 +08:00
src={
process.env.NEXT_PUBLIC_CDN_URL + "/public/images/iosinstall_6.png"
}
2024-06-14 23:34:23 +08:00
alt=""
/>
2024-01-03 01:07:16 +08:00
<p className="text-white text-base mt-4">
请于IOS7.1及以上版本运行此软件具体设置内的样式展示可能会根据您的IOS版本有些区别请注意区分
</p>
å
</section>
);
}