We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0d6f42 commit 60fecb0Copy full SHA for 60fecb0
1 file changed
src/app/login/page.tsx
@@ -10,6 +10,10 @@ interface OauthButtonProps {
10
bgColor: string;
11
}
12
13
+const notReady = () => {
14
+ alert('준비 중입니다.');
15
+};
16
+
17
export default function Login() {
18
return (
19
<Container>
@@ -24,6 +28,7 @@ export default function Login() {
24
28
alt="Naver"
25
29
width={26}
26
30
height={26}
31
+ onClick={notReady}
27
32
/>
33
</OauthButton>
34
<OauthButton bgColor="#FFFFFF">
@@ -33,7 +38,9 @@ export default function Login() {
38
<SocialKakao />
39
35
40
</OauthWrapper>
36
- <LetterBtnText>로그인 없이 편지 작성해보기</LetterBtnText>
41
+ <LetterBtnText onClick={notReady}>
42
+ 로그인 없이 편지 작성해보기
43
+ </LetterBtnText>
37
44
</ImageWrapper>
45
</Container>
46
);
0 commit comments