payment not found

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-10 17:23:20 +05:00
parent f157c56b93
commit 79436a9b9d
7 changed files with 567 additions and 88 deletions

View File

@@ -1,6 +1,9 @@
import { redirect } from 'next/navigation'
import React from 'react'
import PaymentFailed from "@/components/pages/payment";
import { redirect } from "next/navigation";
import React from "react";
export default function Page() {
return redirect('/home')
// return redirect('/home')
return <PaymentFailed />;
}