From 5b33ad70bc16cf53b1fef8c01cc7e0c28c119821 Mon Sep 17 00:00:00 2001 From: MOON Date: Wed, 10 Jul 2024 21:27:49 +0900 Subject: [PATCH] =?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 + +
+ +
+ + + +
+ +
+

회원이 아니신가요?

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