Skip to content

Commit

Permalink
Merge pull request #585 from woowacourse-teams/develop
Browse files Browse the repository at this point in the history
Version 4.1.1 배포
  • Loading branch information
ronci authored Oct 17, 2022
2 parents fc3d986 + 82331ad commit 64c8d39
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/public/pwaServiceWorker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const VERSION = 'v5.0.8';
const VERSION = 'v5.0.9';
const CACHE_NAME = 'smody-cache_' + VERSION;
const IMAGE_CACHE_NAME = 'smody-image_' + VERSION;

Expand Down
11 changes: 9 additions & 2 deletions frontend/src/pages/EventPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ const EventPage = () => {
const themeContext = useThemeContext();

return (
<FlexBox flexDirection="column">
<FlexBox flexDirection="column" justifyContent="center">
<TitleText color={themeContext.onBackground} size={20} fontWeight="bold">
⭐ 우테코 팀프로젝트 사용 챌린지 이벤트 ⭐
</TitleText>

<DescriptionText color={themeContext.onBackground} size={16}>
챌린지를 1회라도 인증한다면 추첨을 통해 스모디 컵을 드립니다!
</DescriptionText>
<FlexBox as="ul" flexDirection="column" gap="27px">
{EVENT_CHALLENGE_ID_LIST.map((challengeId: number) => (
<li key={challengeId}>
Expand All @@ -34,6 +36,11 @@ const EventPage = () => {
export default EventPage;

const TitleText = styled(Text)`
text-align: center;
margin-bottom: 0.3rem;
`;

const DescriptionText = styled(Text)`
text-align: center;
margin-bottom: 1.5rem;
`;

0 comments on commit 64c8d39

Please sign in to comment.