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
1 change: 1 addition & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:

- name: Create .env file # env 파일 생성 단계 추가
run: |
echo "VITE_API_BASE_URL=${{ secrets.VITE_API_BASE_URL }}" >> .env
echo "VITE_KAKAO_REST_API_KEY=${{ secrets.VITE_KAKAO_REST_API_KEY }}" >> .env
echo "VITE_KAKAO_JAVASCRIPT_KEY=${{ secrets.VITE_KAKAO_JAVASCRIPT_KEY }}" >> .env
echo "VITE_KAKAO_PRODUCTION_REDIRECT_URI=${{ secrets.VITE_KAKAO_PRODUCTION_REDIRECT_URI }}" >> .env
Expand Down
4 changes: 2 additions & 2 deletions src/components/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ const Profile = ({ info, deleteIndex, setVirtualFriendList }: ProfileProps) => {
<div className="relative h-[192px] w-[157px] overflow-hidden rounded-[8px] border border-[#EEEEEE] bg-white lg:w-[200px]">
<button onClick={handleDelete}>
<img
src="/public/icon/dustbin.svg"
src="/icon/dustbin.svg"
alt="Delete"
className="absolute top-3 right-3 h-5 w-5 cursor-pointer"
width={16}
height={16}
/>
</button>
<img
src={`/public/image/${info.mbti}_profile.png`}
src={`/image/${info.mbti}_profile.png`}
alt="Profile"
className="absolute top-[12px] left-[11px] h-12 w-12 rounded-full object-cover"
/>
Expand Down
9 changes: 2 additions & 7 deletions src/components/header/MainHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,13 @@ const MainHeader = ({ isLoggedIn }: { isLoggedIn: boolean }) => {
return (
<div className="flex h-[56px] w-full items-center justify-between bg-white pl-5">
<Link to="/" className="flex items-center">
<img
src="/public/icon/mbtipslogo.svg"
alt="Logo"
width={110}
height={31}
/>
<img src="/icon/mbtipslogo.svg" alt="Logo" width={110} height={31} />
</Link>
{!isLoggedIn ? (
<LoginButton />
) : (
<img
src="/public/icon/people.svg"
src="/icon/people.svg"
alt="Login Done"
className="mx-auto mr-[20px] cursor-pointer"
width={24}
Expand Down
9 changes: 2 additions & 7 deletions src/components/header/SubHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const SubHeader = ({
<div className="relative flex h-[56px] w-full items-center justify-between border-b border-gray-100 bg-white">
{showPreviousIcon && (
<img
src="/public/icon/arrow_left.svg"
src="/icon/arrow_left.svg"
alt="Go To Back"
className="absolute left-4 cursor-pointer"
width={9}
Expand All @@ -77,12 +77,7 @@ const SubHeader = ({
onClick={() => setShareModalIsOpen(true)}
className="absolute right-4"
>
<img
src="/public/icon/share.svg"
alt="Share"
width={16}
height={16}
/>
<img src="/icon/share.svg" alt="Share" width={16} height={16} />
</button>
)}
</div>
Expand Down