Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Senity-Waved/Waved_FE in…
Browse files Browse the repository at this point in the history
…to develop
  • Loading branch information
eeeyooon committed Apr 14, 2024
2 parents 06f817e + 7f69fab commit 45d3150
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
Binary file added public/app-assets/og-image.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 modified public/images/image-waved-banner2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/home/TopBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const bannerItems: IBannerItem[] = [
{
image: {
src: '/images/image-waved-banner2.png',
alt: '챌린지 달성률 80% 이상이면 예치금을 환급받을 수 있어요!',
alt: '챌린지 달성률 70% 이상이면 예치금을 환급받을 수 있어요!',
},
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/components/mychallenge/ChallengeProgress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ const SProgressBar = styled.div<{ dealt: number }>`
width: 14px;
height: 18px;
background-image: ${({ dealt }) =>
dealt >= 80
dealt >= 70
? 'url(/icons/icon-pointer-blue.svg)'
: 'url(/icons/icon-pointer-gray.svg)'};
background-repeat: no-repeat;
background-size: cover;
position: absolute;
top: 0;
right: 20%;
right: 30%;
transform: translate(50%, -100%);
}
`;
Expand Down
1 change: 1 addition & 0 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default function Document() {
return (
<Html lang="ko">
<Head>
<meta property="og:image" content="/app-assets/og-image.png" />
<meta name="theme-color" content={color.WHITE} />
<meta name="msapplication-TileColor" content={color.NORMAL} />
<meta
Expand Down

0 comments on commit 45d3150

Please sign in to comment.