diff --git a/src/app/subscription/cancel/page.tsx b/src/app/subscription/cancel/page.tsx deleted file mode 100644 index 802cf980..00000000 --- a/src/app/subscription/cancel/page.tsx +++ /dev/null @@ -1,55 +0,0 @@ -"use client"; -/** - * 订阅取消回跳页 - * - * 流程: - * 1. 用户在支付服务托管页点 "Cancel" / 关闭页面 - * 2. 支付服务重定向到 `/subscription/cancel` - * 3. 这个页面显示 "已取消" + 跳回 `/subscription` - * - * 不需要任何后端逻辑(没付款发生) - */ -import Link from "next/link"; - -import { MobileShell } from "@/app/_components/core/mobile-shell"; -import { ROUTES } from "@/router/routes"; - -export default function SubscriptionCancelPage() { - return ( - -
-

- Checkout cancelled -

-

- You did not complete the subscription. No payment was charged. -

- - Try again - -
-
- ); -}