history list

This commit is contained in:
hamid zarghami
2026-02-10 15:34:02 +03:30
parent 60157e4d14
commit 2fc546fd81
6 changed files with 28 additions and 84 deletions
+4 -4
View File
@@ -32,10 +32,10 @@ type MenuItemType = {
const menuItems: Array<Array<MenuItemType>> = [
[
{ href: 'notifications', title: 'Notifications', icon: Notification },
{ href: 'transactions/discount/club', title: 'CustomerClub', icon: Cup, premiumOnly: true },
{ href: 'transactions/discount', title: 'Discounts', icon: TicketDiscount, premiumOnly: true },
{ href: 'order/history', title: 'Orders', icon: CalendarSearch, premiumOnly: true },
{ href: 'transactions', title: 'Transactions', icon: Receipt1, premiumOnly: true },
{ href: 'transactions/discount/club', title: 'CustomerClub', icon: Cup, premiumOnly: false },
{ href: 'transactions/discount', title: 'Discounts', icon: TicketDiscount, premiumOnly: false },
{ href: 'order/history', title: 'Orders', icon: CalendarSearch, premiumOnly: false },
{ href: 'transactions', title: 'Transactions', icon: Receipt1, premiumOnly: false },
{ href: 'game', title: 'Games', icon: Game },
{ href: '?share', title: 'ShareWithFriends', icon: Like1 },
{ href: 'report', title: 'ReportProblem', icon: NoteBoardIcon },