Skip to content

Commit

Permalink
Merge pull request #66 from Funssion-SWM/develop
Browse files Browse the repository at this point in the history
랜딩페이지 gif 교체
  • Loading branch information
dongree authored Nov 9, 2023
2 parents b98268e + 784f2eb commit 650937b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
Binary file modified src/assets/autocomplete.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/coverletter_example.png
Binary file not shown.
Binary file added src/assets/hire.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/mypage.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/components/create/coverletter/CoverLetterForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ export default function CoverLetterForm({ userId }: Props) {
onCreate: (e) => {
getCoverletterInfoByUserId(userId).then((res) => {
if ('code' in res) {
if (res.code === 404) setIsCreated(false);
if (res.code === 404) {
setIsCreated(false);
return;
}
notifyToast(res.message, 'error');
return;
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/landing/LandingContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { MAIN_PATH } from '@/utils/const';
import { useRouter } from 'next/navigation';
import infinity from '@/assets/icons/rank/infinity_1.svg';
import wheel from '@/assets/icons/wheel_icon.svg';
import coverletter from '@/assets/coverletter_example.png';
import hire from '@/assets/hire.gif';
import EventHeader from '../shared/EventHeader';

export default function LandingContainer() {
Expand Down Expand Up @@ -165,8 +165,8 @@ export default function LandingContainer() {
</p>
</div>
<Image
src={coverletter}
alt="coverletter_landing_image"
src={hire}
alt="hire"
width={600}
className="rounded-2xl border-2"
/>
Expand Down

0 comments on commit 650937b

Please sign in to comment.