feat: 接入PIPL数据删除权申请/确认页面

- 新增 /privacy-policy/delete-request 页面:提交邮箱发起删除申请
- 新增 /privacy-policy/delete-confirm 页面:从邮件链接确认删除(Suspense包裹useSearchParams)
- 隐私政策页面加入删除申请入口链接
This commit is contained in:
2026-08-07 13:30:12 +08:00
parent 24a2311e20
commit 3f05bd16e1
4 changed files with 178 additions and 0 deletions
+10
View File
@@ -22,6 +22,16 @@ export default async function PrivacyPolicyPage() {
className="space-y-4 text-slate-700 [&_h2]:mt-8 [&_h2]:text-2xl [&_h2]:font-semibold [&_h2]:text-slate-900 [&_ul]:list-disc [&_ul]:pl-6 [&_li]:mt-1"
dangerouslySetInnerHTML={{ __html: page.body }}
/>
<p className="mt-8 text-slate-700">
<a
href="/privacy-policy/delete-request"
className="text-primary underline"
>
</a>
</p>
</article>
);
}