diff --git a/src/components/common/header/NavBar.tsx b/src/components/common/header/NavBar.tsx index 147bff3..ebdbd13 100644 --- a/src/components/common/header/NavBar.tsx +++ b/src/components/common/header/NavBar.tsx @@ -38,7 +38,7 @@ const NavBar = () => { const menuDataSelector = (): IMenu[] => { const resultArray = [ - { title: '프로젝트', routing: '/project' }, + // { title: '프로젝트', routing: '/project' }, { title: '위키', routing: 'https://wiki.cau-likelion.org', target: '_blank' }, { title: '피드', routing: 'https://blog.cau-likelion.org', target: '_blank' }, { title: isLogin ? 'MY' : 'Log in', routing: isLogin ? '/mypage' : '/login' }, @@ -63,7 +63,7 @@ const NavBar = () => { - + {/* */} {menuDataSelector().map(({ title, routing, target }, index) => ( ))}