Skip to content

Commit

Permalink
[FE] chore: topbar에서 사용되지 않는 검색창 및 프로필 사진 숨김 처리 (#281)
Browse files Browse the repository at this point in the history
* chore: topbar에서 사용되지 않는 검색창 및 프로필 사진 숨김 처리

* chore: topbar에서 캐릭터 이미지가 보이지 않도록 수정
  • Loading branch information
chysis authored Aug 12, 2024
1 parent 3f8deba commit f0f0155
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import LogoIcon from '../../../../../assets/logo.svg';
// import LogoIcon from '../../../../../assets/logo.svg';

import * as S from './styles';

const Logo = () => {
return (
<S.Logo>
<img src={LogoIcon} alt="로고 아이콘" />
{/* <img src={LogoIcon} alt="로고 아이콘" /> */}
<S.LogoText>
<span>REVIEW</span>
<span>ME</span>
Expand Down
10 changes: 5 additions & 5 deletions frontend/src/components/layouts/Topbar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import UserProfileIcon from '../../../assets/userProfile.svg';
import { SearchInput } from '../../common';
// import UserProfileIcon from '../../../assets/userProfile.svg';
// import { SearchInput } from '../../common';

import Logo from './components/Logo';
import SidebarOpenButton from './components/SidebarOpenButton';
import * as S from './styles';

const USER_SEARCH_PLACE_HOLDER = '사용자를 입력해주세요.';
// const USER_SEARCH_PLACE_HOLDER = '사용자를 입력해주세요.';

interface TopbarProps {
openSidebar: () => void;
Expand All @@ -18,8 +18,8 @@ const Topbar = ({ openSidebar }: TopbarProps) => {
<Logo />
</S.Container>
<S.Container>
<SearchInput $width="30rem" $height="3.6rem" placeholder={USER_SEARCH_PLACE_HOLDER} />
<S.UserProfile src={UserProfileIcon} alt="로그인한 사용자 깃허브 프로필" />
{/* <SearchInput $width="30rem" $height="3.6rem" placeholder={USER_SEARCH_PLACE_HOLDER} /> */}
{/* <S.UserProfile src={UserProfileIcon} alt="로그인한 사용자 깃허브 프로필" /> */}
</S.Container>
</S.Layout>
);
Expand Down

0 comments on commit f0f0155

Please sign in to comment.