From 34c116e70afca87c80d619ac7e8846d7279c1ac1 Mon Sep 17 00:00:00 2001 From: Mahyar Khanbolooki Date: Thu, 21 Aug 2025 18:27:14 +0330 Subject: [PATCH] fix: transaction page style --- src/app/[name]/(Main)/transactions/page.tsx | 123 ++++++++++++-------- 1 file changed, 76 insertions(+), 47 deletions(-) diff --git a/src/app/[name]/(Main)/transactions/page.tsx b/src/app/[name]/(Main)/transactions/page.tsx index 8452d41..dadc3de 100644 --- a/src/app/[name]/(Main)/transactions/page.tsx +++ b/src/app/[name]/(Main)/transactions/page.tsx @@ -1,55 +1,84 @@ import { DataTableDemo } from '@/components/ui/datatable' import { ef } from '@/lib/helpers/utfNumbers' -import { MoneyRecive, MoneySend, Wallet } from 'iconsax-react' -import { ArrowDownLeft, ArrowUpRight } from 'lucide-react' +import { + ArrowLeft, + ArrowRight, + MoneyRecive, + MoneySend, + Wallet +} from 'iconsax-react' import React from 'react' -function TransactionsReviewIndex() { - return ( -
-

لیست تراکنش ها

+function TransactionsReviewIndex () { + return ( +
+

لیست تراکنش ها

-
-
-
- -
- مجموع واریز ها - {ef('140,000,000 ریال')} - - -
30%
-
-
-
-
- -
- مجموع برداشت ها - {ef('140,000,000 ریال')} - - -
30%
-
-
-
-
- -
- موجودی کیف پول - {ef('140,000,000 ریال')} - - -
30%
-
-
-
+
+
+
+ +
+ مجموع واریز ها + + {ef('140,000,000 ریال')} + + + + {ef('30%')} + +
+
+
+ +
+ مجموع برداشت ها + + {ef('140,000,000 ریال')} + + + + {ef('30%')} + +
+
+
+ +
+ موجودی کیف پول + + {ef('140,000,000 ریال')} + + + + {ef('30%')} + +
+
-
- -
-
- ) +
+ +
+
+ ) } -export default TransactionsReviewIndex \ No newline at end of file +export default TransactionsReviewIndex