From 87860e08a6dd926b99dc9452c94f5ff2be42326e Mon Sep 17 00:00:00 2001 From: GGGGGangSub Date: Mon, 5 Jan 2026 22:22:36 +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=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=9D=B4=EB=8F=99=20=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5(Link)=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/auth/LoginForm.tsx | 8 +++++++- components/auth/SignupForm.tsx | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/components/auth/LoginForm.tsx b/components/auth/LoginForm.tsx index f362332..382ca54 100644 --- a/components/auth/LoginForm.tsx +++ b/components/auth/LoginForm.tsx @@ -1,6 +1,7 @@ import { FormField } from '@/components/auth/FormField'; import { FaGithub } from 'react-icons/fa'; import { Button } from '@/components/auth/Button'; +import Link from 'next/link'; export function LoginForm() { return ( @@ -17,7 +18,12 @@ export function LoginForm() {

계정이 없으신가요? - 회원가입 + + 회원가입 +

diff --git a/components/auth/SignupForm.tsx b/components/auth/SignupForm.tsx index 501bf88..c3703d6 100644 --- a/components/auth/SignupForm.tsx +++ b/components/auth/SignupForm.tsx @@ -1,4 +1,5 @@ import { FormField } from '@/components/auth/FormField'; +import Link from 'next/link'; export function SignupForm() { return ( @@ -16,7 +17,12 @@ export function SignupForm() {

계정이 있으신가요? - 로그인 + + 로그인 +

);