Files
pangolin/web/website/src/components/Footer.astro
T
wangjia 1c8f6cb56b fix(website): 去除夸大宣传 + 隐藏占位 Blog 区(官宣页上线前 P0)
- 「80+ 全球加速线路」→ 中性「全球加速线路 / Global routes」(hero 徽章/功能卡/Pro 套餐/对比表 4 处);
  现实仅 1 个节点(pangolin1),80+ 属夸大宣传(国内 VPN 有法律风险)。
- 功能卡③描述去掉「港日新美欧韩」具体地区罗列 → 「覆盖多地优质线路」。
- 隐藏整个 Blog 区:3 篇均占位假帖,含虚构的「首尔/法兰克福节点」「v2.4 版本」。
  移除 <Blog/> + 顶栏导航 Blog 项 + 页脚 Blog 链接;有真实文章后恢复。

未动(待用户输入):英文版价格货币(等美元定价);下载链接归入 #30 CI/CD。

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-05 17:35:49 +08:00

51 lines
1.4 KiB
Plaintext

---
import Brand from './Brand.astro';
import type { T } from '../i18n/strings';
interface Props { t: T }
const { t } = Astro.props;
---
<footer class="ftr">
<div class="wrap">
<div class="top">
<div>
<div class="nm">
<Brand variant="footer" size={28} />
穿山甲
</div>
<p class="tag">{t('ft.tag')}</p>
</div>
<div>
<h4>{t('ft.product')}</h4>
<ul>
<li><a href="#product">{t('ft.features')}</a></li>
<li><a href="#pricing">{t('ft.pricing')}</a></li>
<li><a href="#download">{t('ft.download')}</a></li>
</ul>
</div>
<div>
<h4>{t('ft.resources')}</h4>
<ul>
<li><a href="#docs">{t('ft.docs')}</a></li>
<li><a href="#docs">{t('ft.faq')}</a></li>
<li><a href="#docs">{t('ft.privacy')}</a></li>
</ul>
</div>
<div>
<h4>{t('ft.contact')}</h4>
<ul>
<li><a class="mono">shop.pangolin.vpn</a></li>
<li><a class="mono">Telegram @PangolinVPN_bot</a></li>
<li><a class="mono">LINE @pangolinvpn</a></li>
<li><a class="mono">support@pangolin.vpn</a></li>
</ul>
</div>
</div>
<div class="bot">
<span>{t('ft.copy')}</span>
<span>{t('ft.madenote')}</span>
<span>{t('ft.hours')}</span>
</div>
</div>
</footer>