Skip to content

Commit

Permalink
Modify : 홈 배너의 애니메이션 파일들을 이미지 파일로 교체
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongHwan-dev committed Mar 15, 2022
1 parent b361ce4 commit 395d17e
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
Binary file added public/images/home/autonomy-project_animation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added public/images/home/common-project_animation.png
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 public/images/home/common-project_animation.webp
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/home/HomeBannerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const HomeBannerCard: React.FC<HomeBannderCardProps> = ({
))}
</InfoWrapper>
<ImgWrapper>
<Img src={imageUrl} alt={`${subHead} 애니메이션`} />
<Img src={imageUrl} alt={subHead} />
</ImgWrapper>
</BannerCard>
);
Expand Down
6 changes: 3 additions & 3 deletions src/components/home/HomeBannerSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const HOME_BANNER_SLIDE_LIST: HomeBannerSlideType[] = [
'비전공자/전공자가 한 팀으로 웹/모바일 기반 서비스 구현',
'웹 파트(웹기술, 웹 디자인, 웹IoT 중 택 1) / 모바일 파트',
],
imageUrl: '/images/home/common-project_animation.webp',
imageUrl: '/images/home/common-project_animation.png',
hexColorCode: '#172337',
},
{
Expand All @@ -37,7 +37,7 @@ const HOME_BANNER_SLIDE_LIST: HomeBannerSlideType[] = [
'4차 산업혁명 분야 신기술 도메인 구현 프로젝트 수행',
'인공지능, 빅데이터, 블록체인, IoT 제어 중 택 1',
],
imageUrl: '/images/home/specialization-project_animation.webp',
imageUrl: '/images/home/specialization-project_animation.png',
hexColorCode: '#16212a',
},
{
Expand All @@ -48,7 +48,7 @@ const HOME_BANNER_SLIDE_LIST: HomeBannerSlideType[] = [
'공통, 특화 프로젝트 경험바탕으로, 자유 주제로 서비스를 개발하여 나만의 포트폴리오 완성',
'기업연계, 오픈소스, 자유주제 중 택 1',
],
imageUrl: '/images/home/autonomy-project_animation.webp',
imageUrl: '/images/home/autonomy-project_animation.png',
hexColorCode: '#383547',
},
];
Expand Down
2 changes: 1 addition & 1 deletion src/components/projects/ProjectBannerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ProjectBannerCard: React.FC<ProjectBannerCardProps> = ({
<Description>{description}</Description>
</InfoWrapper>
<ImgWrapper>
<Img src={imageUrl} alt={`${subHead} 이미지`} />
<Img src={imageUrl} alt={`${subHead} 애니메이션`} />
</ImgWrapper>
</BannerCard>
);
Expand Down

0 comments on commit 395d17e

Please sign in to comment.