Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
"use client";
|
|
|
|
import { AuthGuard } from "@/components/AuthGuard";
|
|
import { AccountSettings } from "@/components/settings/AccountSettings";
|
|
|
|
export default function DashboardSettingsPage() {
|
|
return (
|
|
<AuthGuard>
|
|
<AccountSettings backHref="/dashboard" backLabel="بازگشت به داشبورد" />
|
|
</AuthGuard>
|
|
);
|
|
}
|