TorbatYar/frontend/app/admin/settings/page.tsx
Mortezakoohjani 800b0ba2c5 Deploy TorbatYar for torbatyar.ir with nginx multi-tenant routing.
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>
2026-07-21 21:43:33 +03:30

8 lines
174 B
TypeScript

"use client";
import { AccountSettings } from "@/components/settings/AccountSettings";
export default function AdminSettingsPage() {
return <AccountSettings />;
}