diff --git a/public/icons/loginImg.png b/public/icons/loginImg.png index 7c3afc2..b6f620e 100644 Binary files a/public/icons/loginImg.png and b/public/icons/loginImg.png differ diff --git a/src/app/login/auth/page.tsx b/src/app/login/auth/page.tsx index a34b857..b49ad4c 100644 --- a/src/app/login/auth/page.tsx +++ b/src/app/login/auth/page.tsx @@ -1,14 +1,31 @@ -"use client"; -import Auth from "@/components/templates/login/auth/Auth"; -import React from "react"; +import Image from 'next/image'; +import logo from '@public/icons/logo.png'; +import AuthImgUpload from '@/components/organisms/login/AuthImgUpload'; +import AuthModal from '@/components/organisms/modal/auth/AuthModal'; const page = () => { - const test = () => { - console.log("hi"); - }; return (
- + + {/* {authStatus && authStatus !== "successed" && ( + + )} */} +
+ logoImg +

+ '명지편지'는 명지대학교 학생들을 위한
롤링페이퍼 서비스예요. +

+

+ 서비스 이용을 위해서는
+ 학생카드 인증이 필요해요. +

+

+ 1. MSI 학생정보시스템 접속
+ 2. 학적/장학 → 학생카드
+ 3. 학생카드 캡처 후 업로드
+

+ +
); }; diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 585eb6e..9ed4719 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,11 +1,32 @@ -"use client"; -import Main from "@/components/templates/login/main/Main"; -import React from "react"; +import Image from "next/image"; +import logo from "@public/icons/logo.png"; +import loginImg from "@public/icons/loginImg.png"; +import Link from "next/link"; const page = () => { return ( -
-
+
+ logo +

+ 명지인들과 롤링페이퍼로 마음을 나눠요 +

+ + + + +

+ 시작할 경우, 명지편지의 +
+ 서비스 이용약관 +
+ 과 +
+ 개인정보 보호정책 +
+ 에 동의하게 됩니다. +

); };