Skip to content

Commit 36e93f7

Browse files
committed
feat(62): 로그인 페이지 추가 및 카카오 OAuth 로그인 버튼 구현
1 parent ffffa81 commit 36e93f7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/app/(auth)/login/page.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"use client";
2+
3+
import { redirectToKakaoOAuthLoginPage } from "@/app/(auth)/_api/auth/auth.api";
4+
import { Button } from "@/components/ui/Button";
5+
6+
export default function LoginPage() {
7+
return (
8+
<Button onClick={redirectToKakaoOAuthLoginPage}>로그인좀 해볼까요~</Button>
9+
);
10+
}

0 commit comments

Comments
 (0)