This commit is contained in:
hamid zarghami
2025-10-30 16:07:52 +03:30
parent efbfe7bb72
commit 3d96df59dc
9 changed files with 301 additions and 372 deletions
+9 -9
View File
@@ -1,4 +1,4 @@
import { Home2, Messages3, NotificationStatus, People, Receipt21 } from 'iconsax-react'
import { Home2, DocumentText, NotificationStatus, People, Element3 } from 'iconsax-react'
import { type FC } from 'react'
import { useTranslation } from 'react-i18next'
import { Pages } from '../config/Pages'
@@ -23,7 +23,7 @@ const Footer: FC = () => {
</div>
</div>
</Link>
<Link to={Pages.customer.list}>
<Link to={Pages.customers.list}>
<div className='text-description w-[70px] flex flex-col items-center gap-1.5'>
<People
className='size-5'
@@ -34,22 +34,22 @@ const Footer: FC = () => {
</div>
</div>
</Link>
<Link to={Pages.receipts.index}>
<Link to={Pages.foods.list}>
<div className='text-description w-[70px] flex flex-col items-center gap-1.5'>
<div className='bg-white p-1 rounded-full -mt-7'>
<div className='bg-black flex justify-center items-center size-10 rounded-full'>
<Receipt21
<Element3
className='size-5'
color='white'
/>
</div>
</div>
<div className='text-[10px] '>
{t('footer.receipts')}
{t('footer.foods')}
</div>
</div>
</Link>
<Link to={Pages.announcement.list}>
<Link to={Pages.announcements.list}>
<div className='text-description w-[70px] flex flex-col items-center gap-1.5'>
<NotificationStatus
className='size-5'
@@ -61,14 +61,14 @@ const Footer: FC = () => {
</div>
</Link>
<Link to={Pages.ticket.list}>
<Link to={Pages.orders.list}>
<div className='text-description w-[70px] flex flex-col items-center gap-1.5'>
<Messages3
<DocumentText
className='size-5'
color='#8C90A3'
/>
<div className='text-[10px]'>
{t('footer.tickets')}
{t('footer.orders')}
</div>
</div>
</Link>