From 663b1923ccef56dd46c4759fad1c5a888c265e2c Mon Sep 17 00:00:00 2001 From: SEUNGHWA LEE Date: Thu, 3 Apr 2025 14:59:33 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=B0=8F=20=EB=A1=9C=EA=B3=A0=20=EC=82=AC?= =?UTF-8?q?=EC=A7=84=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/LoginPage.js | 44 +++++++++++++++++++++++++++++++++++++++++ src/pages/SignupPage.js | 0 2 files changed, 44 insertions(+) create mode 100644 src/pages/LoginPage.js create mode 100644 src/pages/SignupPage.js diff --git a/src/pages/LoginPage.js b/src/pages/LoginPage.js new file mode 100644 index 0000000..8eeee7c --- /dev/null +++ b/src/pages/LoginPage.js @@ -0,0 +1,44 @@ +import React from "react"; +import Button from "../components/Button"; +import Logo from "../components/Logo"; + +const LoginPage = () => { + const handleKakaoLogin = () => { + //window.location.href = "나중에 카카오 로그인 키. " + }; + + return ( +
+ +

회원가입하기

+ +
+ ); +}; + +const styles = { + container: { + display : "flex", + flexDirection : "column", + alignItems : "center", + justifyContent: "center", + height: "100vh", + backgroundColor: "#FAE8D4", + }, + title: { + fontSize : "20px", + marginBottom: "20px", + }, + signupButton: { + backgroundColor: "transparent", + border: "1px solid black", + padding: "10px 20px", + borderRadius: "8px", + fontSize: "16px", + marginBottom: "20px", + cursor: "pointer", + }, +}; + +export default LoginPage; \ No newline at end of file diff --git a/src/pages/SignupPage.js b/src/pages/SignupPage.js new file mode 100644 index 0000000..e69de29