Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion components/auth/LoginForm.tsx
Original file line number Diff line number Diff line change
@@ -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 (
Expand All @@ -17,7 +18,12 @@ export function LoginForm() {

<p className="text-text-sub mt-4 text-center text-sm">
계정이 없으신가요?
<a className="text-primary ml-1 cursor-pointer font-medium">회원가입</a>
<Link
className="text-primary ml-1 cursor-pointer font-medium"
href="/signup"
>
회원가입
</Link>
</p>
<div className="text-muted my-6 flex items-center gap-4 text-sm">
<div className="bg-border h-px flex-1" />
Expand Down
8 changes: 7 additions & 1 deletion components/auth/SignupForm.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FormField } from '@/components/auth/FormField';
import Link from 'next/link';

export function SignupForm() {
return (
Expand All @@ -16,7 +17,12 @@ export function SignupForm() {

<p className="text-text-sub mt-4 text-center text-sm">
계정이 있으신가요?
<a className="text-primary ml-1 cursor-pointer font-medium">로그인</a>
<Link
className="text-primary ml-1 cursor-pointer font-medium"
href="/login"
>
로그인
</Link>
</p>
</>
);
Expand Down