chore(legal): update agreement links

This commit is contained in:
2026-07-03 14:45:38 +08:00
parent e22c5dfb78
commit f1e9974bd8
2 changed files with 12 additions and 4 deletions
+2 -2
View File
@@ -244,7 +244,7 @@ export function SubscriptionScreen({
<span className={styles.agreementLabel}> <span className={styles.agreementLabel}>
I agree to the{" "} I agree to the{" "}
<a <a
href={AppConstants.privacyPolicyUrl} href={AppConstants.membershipAgreementUrl}
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer"
className={styles.agreementLink} className={styles.agreementLink}
@@ -253,7 +253,7 @@ export function SubscriptionScreen({
</a>{" "} </a>{" "}
and{" "} and{" "}
<a <a
href={AppConstants.termsOfServiceUrl} href={AppConstants.autoRenewalAgreementUrl}
target="_blank" target="_blank"
rel="noreferrer" rel="noreferrer"
className={styles.agreementLink} className={styles.agreementLink}
+10 -2
View File
@@ -5,11 +5,19 @@ export class AppConstants {
/** 隐私政策文档链接 */ /** 隐私政策文档链接 */
static readonly privacyPolicyUrl = static readonly privacyPolicyUrl =
"https://docs.google.com/document/d/1KyNkbnZ5-2gNUFlE0Jd9eqp-MGKOc95OBAa6hrxK1wg/edit?usp=sharing"; "https://www.banlv-ai.com/cozsweet/privacy-policy.html";
/** 服务条款文档链接 */ /** 服务条款文档链接 */
static readonly termsOfServiceUrl = static readonly termsOfServiceUrl =
"https://docs.google.com/document/d/1ZL5-uDKLNQrkNnWNKlVFi5atwA9hBpNVyoXzzXf1GHs/edit?usp=sharing"; "https://www.banlv-ai.com/cozsweet/service-terms.html";
/** 会员服务协议文档链接 */
static readonly membershipAgreementUrl =
"https://www.banlv-ai.com/cozsweet/membership-agreement.html";
/** 自动续费服务协议文档链接 */
static readonly autoRenewalAgreementUrl =
"https://www.banlv-ai.com/cozsweet/auto-renewal-agreement.html";
/** 开发环境 APP 标题 */ /** 开发环境 APP 标题 */
static readonly appTitleDevelopment = "Develop"; static readonly appTitleDevelopment = "Develop";