Skip to content

Commit 66964cf

Browse files
committed
feat:사전 모집 폼 링크 연결
1 parent 4bbe907 commit 66964cf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

components/common/AnimatedButton/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function AnimatedButton({
4040
</svg> */}
4141
<span className="textgroup">
4242
<span className="mainText">{buttonText}</span>
43-
<span className="cloneText">{buttonText}</span>
43+
<span className="cloneText">{`모집 알림 신청`}</span>
4444
</span>
4545
</ButtonStyled>
4646
);
@@ -59,6 +59,7 @@ const ButtonStyled = styled(Button)<{ variant?: AnimatedButtonVariant }>`
5959
}
6060
6161
.cloneText {
62+
width: 100%;
6263
position: absolute;
6364
top: 0;
6465
left: 0;

components/home/AnimatedTextSection/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { SectionTemplate } from 'components/home';
33
import Path from 'constants/path';
44
import {
55
IS_RECRUITING,
6+
NEXT_GENERATION_RECRUIT_LINK,
67
RECRUIT_BANNER,
78
RECRUIT_BANNER_ACTIVE,
89
} from 'database/recruit';
@@ -41,7 +42,7 @@ function AnimatedTextSection(): ReactElement {
4142
buttonText={buttonName}
4243
onClick={() => {
4344
if (!IS_RECRUITING) {
44-
// window.open(NEXT_GENERATION_RECRUIT_LINK, '_blank');
45+
window.location.href = NEXT_GENERATION_RECRUIT_LINK;
4546
return;
4647
}
4748

0 commit comments

Comments
 (0)