payment not found
This commit is contained in:
@@ -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 />;
|
||||
}
|
||||
|
||||
@@ -155,10 +155,11 @@ export default async function RootLayout({
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
>
|
||||
<InitialLoading />
|
||||
{/* <InitialLoading />
|
||||
<NextIntlClientProvider messages={messages} locale={locale}>
|
||||
<Providers>{children}</Providers>
|
||||
</NextIntlClientProvider>
|
||||
</NextIntlClientProvider> */}
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
|
||||
import PaymentFailed from "@/components/pages/payment";
|
||||
import { redirect } from "next/navigation";
|
||||
|
||||
export default function Home() {
|
||||
return redirect('/uz/home')
|
||||
// return redirect('/uz/home')
|
||||
return <PaymentFailed />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user