import Link from "next/link"; type Props = { searchParams?: Promise<{ next?: string }>; }; export default async function EntitlementRequiredPage({ searchParams }: Props) { const params = (await searchParams) || {}; const nextPath = params.next || "/"; return (

需要登录方可访问此页面

本页面需要登录权限。请登录后重试。
Sign in required to access this page.

去登录 / Sign in 返回首页 / Back to Home

传统令牌模式仍支持 ?access_token=<your-token>
请求路径 / Requested path: {nextPath}

); }