Skip to content

Commit ea6f292

Browse files
committed
feat : 사전 알림 신청 버튼 삭제
1 parent ec72704 commit ea6f292

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

components/common/Header/index.tsx

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import { Hamburger, YappLogo } from 'public/assets/icons';
1010
import { ReactElement, useEffect, useRef } from 'react';
1111
import styled from 'styled-components';
1212
import media from 'styles/media';
13-
import Button from '../Button';
14-
import { NEXT_GENERATION_RECRUIT_LINK } from 'database/recruit';
1513

1614
function Header(): ReactElement {
1715
const { asPath } = useRouter();
@@ -48,17 +46,6 @@ function Header(): ReactElement {
4846
<MenuText active={asPath === path}>{name}</MenuText>
4947
</Link>
5048
))}
51-
<Button
52-
buttonColor={'blue_100'}
53-
width={129}
54-
height={39}
55-
borderRadius={150}
56-
onClick={() =>
57-
(window.location.href = NEXT_GENERATION_RECRUIT_LINK)
58-
}
59-
>
60-
<ButtonText>알림 신청하기</ButtonText>
61-
</Button>
6249
</HeaderMenu>
6350
<MobileHeaderMenu onClick={handleToggleMenu} />
6451
</HeaderInner>
@@ -122,9 +109,5 @@ const MobileHeaderMenu = styled(Hamburger)`
122109
cursor: pointer;
123110
}
124111
`;
125-
const ButtonText = styled.span`
126-
color: white;
127-
font-size: 1.6rem;
128-
`;
129112

130113
export default Header;

0 commit comments

Comments
 (0)