add about

This commit is contained in:
hamid zarghami
2025-12-15 15:08:04 +03:30
parent 64f1629892
commit b42e39dd04
3 changed files with 15 additions and 4 deletions
+12 -2
View File
@@ -4,13 +4,13 @@ import React from 'react'
import BottomNavLink from './BottomNavLink'
import BottomNavHighlightLink from './BottomNavLinkBig'
import PagerIcon from '../icons/PagerIcon'
import NotifiBoardIcon from '../icons/NotifBoardIcon'
import BagIcon from '../icons/BagIcon'
import HeartIcon from '../icons/HeartIcon'
import { useParams, usePathname } from 'next/navigation'
import HomeIcon from '../icons/HomeIcon'
import { useTranslation } from 'react-i18next';
import { useCart } from '@/app/[name]/(Dialogs)/cart/hook/useCart';
import { Building } from 'iconsax-react';
type BottomNavBarProps = {
onPagerClick?: () => void;
@@ -82,7 +82,17 @@ function BottomNavBar({ onPagerClick }: BottomNavBarProps) {
width={20}
height={20} />}
value={t('Menu')} />
<BottomNavLink href={`/${name}/notifications`} icon={<NotifiBoardIcon width={20} height={20} />} value={t('Notifications')} />
<BottomNavLink
href={`/${name}/about`}
icon={
<Building
size={20}
variant="Outline"
color="#8C90A3"
/>
}
value={t('about')}
/>
<BottomNavLink href={'/auth'} icon={<HeartIcon width={20} height={20} />} value={t('Favorites')} />
</nav>
</foreignObject>