From df751dfea4ee181945fd9c76eacbadbb3cd98409 Mon Sep 17 00:00:00 2001 From: Mahyar Khanbolooki Date: Sat, 9 Aug 2025 14:31:25 +0330 Subject: [PATCH] add: payment redirect page --- src/app/[name]/(Dialogs)/verify/page.tsx | 69 ++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/[name]/(Dialogs)/verify/page.tsx diff --git a/src/app/[name]/(Dialogs)/verify/page.tsx b/src/app/[name]/(Dialogs)/verify/page.tsx new file mode 100644 index 0000000..ed51b84 --- /dev/null +++ b/src/app/[name]/(Dialogs)/verify/page.tsx @@ -0,0 +1,69 @@ +'use client'; + +import Button from '@/components/button/PrimaryButton'; +import { ef } from '@/lib/helpers/utfNumbers'; +import { CardTick } from 'iconsax-react'; +import { useRouter } from 'next/navigation'; +import React from 'react' + +type Props = object + +export default function VerifyIndex({ }: Props) { + // const { t } = useTranslation('notifications') + const router = useRouter(); + + return ( +
+
+
+
+ +
پرداخت موفق
+

+ {ef('مبلغ: 560,000 تومان')} +

+
+ +
+
+
تاریخ:
+
{ef('1401/05/08')}
+
+
+ +
+
ساعت:
+
{ef('21:45')}
+
+
+ +
+
از کارت:
+
{ef('6104 6647 **** 1147')}
+
+
+ +
+
درگاه پرداخت:
+
{ef('درگاه پرداخت')}
+
+
+ +
+
شماره پیگیری:
+
{ef('556284526')}
+
+
+ + +
+
+
+
+ ) +} \ No newline at end of file