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

Entitlement Required

This dashboard is protected. If Supabase auth is enabled, please go to{" "} /auth/login {" "} to sign in first.

Legacy mode still supports ?access_token=<your-token>.

Requested path: {nextPath}

); }