diff --git a/src/components/Header/components/BottomSection.tsx b/src/components/Header/components/BottomSection.tsx index 8bcd860..a91f2f6 100644 --- a/src/components/Header/components/BottomSection.tsx +++ b/src/components/Header/components/BottomSection.tsx @@ -2,14 +2,19 @@ import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import { useTranslations } from 'next-intl'; import { Link as NextLink } from '@/navigation'; +import { bestSellingSortOption } from '@/static/sortOptions'; const BottomSection = () => { const t = useTranslations(); + const pages = [ { label: t('header.navigation.products'), href: '/search' }, { label: t('header.navigation.categories'), href: '/categories' }, - { label: t('header.navigation.promotions'), href: '/best-selling' }, - { label: t('header.navigation.bestSelling'), href: '/promotion-center' }, + { + label: t('header.navigation.bestSelling'), + href: `/search?sort=${bestSellingSortOption.key}`, + }, + { label: t('header.navigation.promotions'), href: '/promotion-center' }, ]; return (