9a49ff3f5e
包含分组标题行、移动端 Tab 隐藏滚动条、信号卡片样式及浅色主题适配。
18 lines
465 B
TypeScript
18 lines
465 B
TypeScript
import { EntitlementRequiredClient } from "./EntitlementRequiredClient";
|
|
import { I18nProvider } from "@/hooks/useI18n";
|
|
|
|
type Props = {
|
|
searchParams?: Promise<{ next?: string }>;
|
|
};
|
|
|
|
export default async function EntitlementRequiredPage({ searchParams }: Props) {
|
|
const params = (await searchParams) || {};
|
|
const nextPath = params.next || "/";
|
|
|
|
return (
|
|
<I18nProvider>
|
|
<EntitlementRequiredClient nextPath={nextPath} />
|
|
</I18nProvider>
|
|
);
|
|
}
|