Skip to content

Commit 60fecb0

Browse files
committed
✨feat(#163): 준비중 alert 표시
1 parent d0d6f42 commit 60fecb0

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/app/login/page.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ interface OauthButtonProps {
1010
bgColor: string;
1111
}
1212

13+
const notReady = () => {
14+
alert('준비 중입니다.');
15+
};
16+
1317
export default function Login() {
1418
return (
1519
<Container>
@@ -24,6 +28,7 @@ export default function Login() {
2428
alt="Naver"
2529
width={26}
2630
height={26}
31+
onClick={notReady}
2732
/>
2833
</OauthButton>
2934
<OauthButton bgColor="#FFFFFF">
@@ -33,7 +38,9 @@ export default function Login() {
3338
<SocialKakao />
3439
</OauthButton>
3540
</OauthWrapper>
36-
<LetterBtnText>로그인 없이 편지 작성해보기</LetterBtnText>
41+
<LetterBtnText onClick={notReady}>
42+
로그인 없이 편지 작성해보기
43+
</LetterBtnText>
3744
</ImageWrapper>
3845
</Container>
3946
);

0 commit comments

Comments
 (0)