Skip to content

Commit

Permalink
fix: 로그인 회원가입 폼 로고 클릭시 랜딩으로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
grapefruit13 committed Mar 30, 2024
1 parent 9bf541a commit 13a4ff5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/auth/SigninForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ const SigninForm = () => {
<section className={cx('container')}>
<div className={cx('signin')}>
<header className={cx('signin-header')}>
<p className={cx('signin-header-main-title')}>GGF</p>
<span className={cx('signin-header-main-title')}>
<Link href={PAGE_PATHS.landing}>GGF</Link>
</span>
<div className={cx('signin-header-sub-container')}>
<span className={cx('sub-title')}>BEST TEAMWORK</span>
<span className={cx('sub-title')}>IT&apos;s UP TO YOU</span>
Expand Down
4 changes: 3 additions & 1 deletion src/components/auth/SignupForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ const SignupForm = () => {
<section className={cx('container')}>
<div className={cx('signup')}>
<header className={cx('signup-header')}>
<p className={cx('signup-header-main-title')}>GGF</p>
<span className={cx('signup-header-main-title')}>
<Link href={PAGE_PATHS.landing}>GGF</Link>
</span>
<div className={cx('signup-header-sub-container')}>
<span className={cx('sub-title')}>BEST TEAMWORK</span>
<span className={cx('sub-title')}>IT&apos;s UP TO YOU</span>
Expand Down

0 comments on commit 13a4ff5

Please sign in to comment.