Skip to content

Commit

Permalink
feat: 로고 Beta 딱지 추가 (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
yogjin authored May 29, 2024
1 parent 0b8bb4c commit f65731c
Show file tree
Hide file tree
Showing 3 changed files with 158 additions and 401 deletions.
4 changes: 4 additions & 0 deletions public/assets/beta.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/layouts/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import styled from '@emotion/styled';
import { SVGHeaderMainLogo } from 'concept-be-design-system';
import { useNavigate } from 'react-router-dom';

import { ReactComponent as SVGHeaderBetaLogo } from '../../public/assets/beta.svg';
import useRouteMatched from '../hooks/useRouteMatch';

const Logo = () => {
Expand All @@ -21,6 +22,7 @@ const Logo = () => {
return (
<Wrapper onClick={onClickLogo}>
<SVGHeaderMainLogo />
<SVGHeaderBetaLogo />
</Wrapper>
);
};
Expand All @@ -29,4 +31,7 @@ export default Logo;

const Wrapper = styled.div`
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
`;
Loading

0 comments on commit f65731c

Please sign in to comment.