fix: 修改下载路径
This commit is contained in:
@@ -119,11 +119,11 @@ export default function Content() {
|
||||
{/* 快捷下载 Card */}
|
||||
<Card className='rounded-[20px] border border-[#D9D9D9] p-6 shadow-[0px_0px_52.6px_1px_rgba(15,44,83,0.05)] 2xl:order-2 2xl:col-span-1'>
|
||||
<div className='flex items-center justify-between'>
|
||||
<h3 className='text-base font-medium text-[#666666] sm:text-xl'>快捷下载</h3>
|
||||
</div>
|
||||
<div className={'text-xs font-normal leading-[1.5] text-[#666]'}>
|
||||
选择对应操作系统下载客户端
|
||||
<h3 className='text-base font-medium text-[#666666] sm:text-xl'>
|
||||
{t('quickDownloads')}
|
||||
</h3>
|
||||
</div>
|
||||
<div className={'text-xs font-normal leading-[1.5] text-[#666]'}>{t('selectOS')}</div>
|
||||
|
||||
<div
|
||||
className={
|
||||
@@ -141,11 +141,24 @@ export default function Content() {
|
||||
icon: 'Group 77',
|
||||
href: 'https://apps.apple.com/us/app/shadowrocket/id932747118?l=zh-Hans-CN',
|
||||
},
|
||||
{ label: 'Win', icon: 'Group 75', href: '' },
|
||||
{ label: 'Android', icon: 'Group 75', href: '' },
|
||||
{
|
||||
label: 'Win',
|
||||
icon: 'Group 75',
|
||||
href: 'https://airoport.oss-ap-northeast-1.aliyuncs.com/Hiddify-Windows-Setup-x64.msix',
|
||||
},
|
||||
{
|
||||
label: 'Android',
|
||||
icon: 'Group 75',
|
||||
href: 'https://airoport.oss-ap-northeast-1.aliyuncs.com/Hiddify-Android-universal.apk',
|
||||
},
|
||||
].map((v) => {
|
||||
return (
|
||||
<a href={v.href} target={'_blank'} className={'cursor-pointer text-center'}>
|
||||
<a
|
||||
key={v.label}
|
||||
href={v.href}
|
||||
target={'_blank'}
|
||||
className={'cursor-pointer text-center'}
|
||||
>
|
||||
<div className={''}>
|
||||
<SvgIcon name={v.icon}></SvgIcon>
|
||||
</div>
|
||||
@@ -159,7 +172,7 @@ export default function Content() {
|
||||
'mt-2.5 flex h-[37px] items-center justify-between rounded-full bg-[#EAEAEA] pl-4 text-[#666]'
|
||||
}
|
||||
>
|
||||
<span className={'text-sm font-medium'}>免费美区Apple ID</span>
|
||||
<span className={'text-sm font-medium'}>{t('freeAppleID')}</span>
|
||||
<AiroButton
|
||||
className={'m-1'}
|
||||
variant={'primary'}
|
||||
@@ -170,7 +183,7 @@ export default function Content() {
|
||||
});
|
||||
}}
|
||||
>
|
||||
获取
|
||||
{t('get')}
|
||||
</AiroButton>
|
||||
</div>
|
||||
</Card>
|
||||
@@ -190,7 +203,7 @@ export default function Content() {
|
||||
</Link>
|
||||
</div>
|
||||
<div className={'text-xs font-light leading-[1.5] text-[#666]'}>
|
||||
复制订阅链接或点击二维码按钮扫码
|
||||
{t('copySubscribeLink')}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user