Skip to content

Commit 424878f

Browse files
committed
refact: 메뉴 페이지 이름 변경 및 돋보기 기능 삭제
1 parent 308c4fa commit 424878f

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

src/pages/menu/ui/MenuPage.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { flexColumn } from '../../../../design-system/styles/flex';
22
import HorizontalCardButton from '../../../../design-system/ui/buttons/HorizontalCardButton';
33
import { useNavigate } from 'react-router-dom';
4-
5-
import searchIcon from '../../../../design-system/icons/Search.svg';
64
import Header from '../../../../design-system/ui/Header';
75
import { buttonData } from '../../../shared/types/menuType';
86
import BottomBar from '../../../widgets/main/ui/BottomBar';
@@ -17,12 +15,7 @@ const MenuPage = () => {
1715
return (
1816
<>
1917
<Header
20-
centerContent="카테고리"
21-
rightContent={
22-
<button type="button" className="w-5 z-10" onClick={() => navigate('/search')}>
23-
<img src={searchIcon} alt="Search Icon" className="w-4" />
24-
</button>
25-
}
18+
centerContent="메뉴"
2619
/>
2720
<div className={`${flexColumn} gap-4 px-8 md:px-10 mt-8`}>
2821
{buttonData.map((button, index) => (

0 commit comments

Comments
 (0)