Add payment module, BFF proxy, hub/dashboard/ops/PSP/merchant screens wired to real APIs, and mark payment-frontend complete in project status. Co-authored-by: Cursor <cursoragent@cursor.com>
6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function PaymentIndexPage() {
|
|
redirect("/payment/hub");
|
|
}
|