Skip to content

Commit

Permalink
fix: add link to burger menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jsapro committed Jan 15, 2024
1 parent 9b52d57 commit 834a017
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/navigation-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { useEffect, useRef } from 'react';
import CustomNavLink from '@components/custom-nav-link';
import { usePopup } from '@hooks/use-popup';
import { useAuth } from '@hooks/use-auth';
import { URLS } from '@data/constants';
import styles from './navigation-bar.module.scss';

interface NavigationBarProps {
Expand Down Expand Up @@ -69,7 +70,7 @@ const NavigationBar: React.FC<NavigationBarProps> = ({ isOpen, onClick }) => {
</CustomNavLink>
<CustomNavLink
onClick={onClick}
to={'/'}
to={URLS.ABOUT_US}
className={`${styles['navigation-bar__link']}`}
classNameActive={`${styles['navigation-bar__link_active']}`}
>
Expand Down

0 comments on commit 834a017

Please sign in to comment.