From 9de140abd6378418089242fa6c78407100a095f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=ED=97=8C?= Date: Tue, 16 Jun 2026 14:33:23 +0900 Subject: [PATCH] =?UTF-8?q?[feat]=20front:=20=EB=A1=9C=EA=B7=B8=EC=9D=B8?= =?UTF-8?q?=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EA=B5=AC=ED=98=84(=EB=A1=9C?= =?UTF-8?q?=EA=B3=A0=C2=B7=ED=8F=BC=20=EC=A1=B0=EB=A6=BD,=20=EB=B0=98?= =?UTF-8?q?=EC=9D=91=ED=98=95/=EC=A0=91=EA=B7=BC=EC=84=B1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- front/src/pages/LoginPage.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/front/src/pages/LoginPage.tsx b/front/src/pages/LoginPage.tsx index 79a2514..8543179 100644 --- a/front/src/pages/LoginPage.tsx +++ b/front/src/pages/LoginPage.tsx @@ -1,5 +1,21 @@ +import { Logo } from '@/components' +import { LoginForm } from '@/features/auth' + export function LoginPage() { - return
+ return ( +
+
+
+ +

+ 로그인 +

+
+ + +
+
+ ) } export default LoginPage