Skip to content

Commit

Permalink
Merge pull request #164 from JNU-econovation/fix/fe-build
Browse files Browse the repository at this point in the history
fix: a태그의 링크 href방식 제거
  • Loading branch information
capDoYeonLee authored Nov 1, 2023
2 parents 524ec57 + dc85999 commit 97d8360
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 18 deletions.
2 changes: 1 addition & 1 deletion fe/src/components/common/FooterSite.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const FooterSite = () => {
<div className="footerBox">
<p className="footerTitle">FAMILY SITE</p>
<p className="footerContent">
<a href="https://econovation.kr/">econovation.kr</a>
<a>econovation.kr</a>
</p>
</div>
</div>
Expand Down
6 changes: 1 addition & 5 deletions fe/src/components/common/Nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ const Nav = () => {
<nav className="flex justify-end">
<div className="flex justify-end items-center">
{selector.isLogin && <LoginSuccess />}
{!selector.isLogin && (
<a className="navComponent" href="/login">
로그인
</a>
)}
{!selector.isLogin && <a className="navComponent">로그인</a>}
</div>
</nav>
);
Expand Down
8 changes: 2 additions & 6 deletions fe/src/components/common/TitleLogo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ import React from "react";
const TitleLogo = () => {
return (
<div className="flex justify-center m-[4rem]">
<a href="/">
<img
className="w-[20rem] justify-center cursor-pointer"
src="/icon/title-logo.png"
alt="title-logo"
></img>
<a>
<img className="w-[20rem] justify-center cursor-pointer" src="/icon/title-logo.png" alt="title-logo"></img>
</a>
</div>
);
Expand Down
7 changes: 1 addition & 6 deletions fe/src/components/login/LoginToSignup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@ const LoginToSignup = () => {
<div>
<div className="flex flex-row mt-24 justify-center text-xl">
<p>아직 회원이 아니신가요?</p>
<a
href="/signup"
className="text-black-600 ml-4 before:text-black visited:text-black"
>
회원가입
</a>
<a className="text-black-600 ml-4 before:text-black visited:text-black">회원가입</a>
</div>
</div>
);
Expand Down

0 comments on commit 97d8360

Please sign in to comment.