From 8ee83af7616228c106f48378eb7dde74db62d34f Mon Sep 17 00:00:00 2001 From: MOON Date: Wed, 10 Jul 2024 21:26:24 +0900 Subject: [PATCH 1/3] =?UTF-8?q?:heavy=5Fplus=5Fsign:=20=EC=9D=B4=EB=AF=B8?= =?UTF-8?q?=EC=A7=80=20=ED=8C=8C=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/lg.svg | 5 +++++ public/logo-google.svg | 15 +++++++++++++++ public/logo-kakao.svg | 13 +++++++++++++ public/logo-naver.svg | 5 +++++ 4 files changed, 38 insertions(+) create mode 100644 public/lg.svg create mode 100644 public/logo-google.svg create mode 100644 public/logo-kakao.svg create mode 100644 public/logo-naver.svg diff --git a/public/lg.svg b/public/lg.svg new file mode 100644 index 00000000..a4d3364f --- /dev/null +++ b/public/lg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/logo-google.svg b/public/logo-google.svg new file mode 100644 index 00000000..5b169484 --- /dev/null +++ b/public/logo-google.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/logo-kakao.svg b/public/logo-kakao.svg new file mode 100644 index 00000000..f546e64d --- /dev/null +++ b/public/logo-kakao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/logo-naver.svg b/public/logo-naver.svg new file mode 100644 index 00000000..dbec93dd --- /dev/null +++ b/public/logo-naver.svg @@ -0,0 +1,5 @@ + + + + + From f472f6fb7eb7d41c560afe2f733df6dd620f9cf5 Mon Sep 17 00:00:00 2001 From: MOON Date: Wed, 10 Jul 2024 21:27:08 +0900 Subject: [PATCH 2/3] =?UTF-8?q?:lipstick:=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=A0=88=EC=9D=B4=EC=95=84?= =?UTF-8?q?=EC=9B=83=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pageLayout/AuthLayout/AuthLayout.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/pageLayout/AuthLayout/AuthLayout.tsx diff --git a/src/pageLayout/AuthLayout/AuthLayout.tsx b/src/pageLayout/AuthLayout/AuthLayout.tsx new file mode 100644 index 00000000..3cc64aa7 --- /dev/null +++ b/src/pageLayout/AuthLayout/AuthLayout.tsx @@ -0,0 +1,5 @@ +import { ReactNode } from 'react'; + +export default function AuthLayout({ children }: { children: ReactNode }) { + return
{children}
; +} From 5b33ad70bc16cf53b1fef8c01cc7e0c28c119821 Mon Sep 17 00:00:00 2001 From: MOON Date: Wed, 10 Jul 2024 21:27:49 +0900 Subject: [PATCH 3/3] =?UTF-8?q?:lipstick:=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20UI=20=EC=83=9D=EC=84=B1=20?= =?UTF-8?q?=EB=B0=8F=20=EB=B0=98=EC=9D=91=ED=98=95=20=EB=94=94=EC=9E=90?= =?UTF-8?q?=EC=9D=B8=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/auth/SignIn.tsx | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/pages/auth/SignIn.tsx diff --git a/src/pages/auth/SignIn.tsx b/src/pages/auth/SignIn.tsx new file mode 100644 index 00000000..488e13a0 --- /dev/null +++ b/src/pages/auth/SignIn.tsx @@ -0,0 +1,50 @@ +import Image from 'next/image'; +import Link from 'next/link'; +import AuthLayout from '@/pageLayout/AuthLayout/AuthLayout'; +import { Input } from '@/components/ui/input'; +import { Button } from '@/components/ui/button'; + +export default function SignIn() { + return ( + +
+ + logo + +
+ +
+ + + +
+ +
+

회원이 아니신가요?

+ + + +
+ +
+ + + +
+
+ ); +}