feat: Implement user account center with authentication, subscription management, and cryptocurrency payment integration.

This commit is contained in:
2569718930@qq.com
2026-03-16 20:30:46 +08:00
parent 6a229a592b
commit 609fc8914a
6 changed files with 448 additions and 80 deletions
+6 -2
View File
@@ -1,4 +1,5 @@
import { LoginClient } from "@/components/auth/LoginClient";
import { I18nProvider } from "@/hooks/useI18n";
type PageProps = {
searchParams?: Promise<{ next?: string }>;
@@ -16,6 +17,9 @@ function normalizeNextPath(input: string | undefined) {
export default async function LoginPage({ searchParams }: PageProps) {
const params = (await searchParams) || {};
const nextPath = normalizeNextPath(params.next);
return <LoginClient nextPath={nextPath} />;
return (
<I18nProvider>
<LoginClient nextPath={nextPath} />
</I18nProvider>
);
}