Skip to content

Commit fd78ff2

Browse files
committed
Add Camp Contest Introduction for 2024W
1 parent c56921b commit fd78ff2

File tree

1 file changed

+18
-23
lines changed

1 file changed

+18
-23
lines changed

pages/campcontest.page.js

+18-23
Original file line numberDiff line numberDiff line change
@@ -196,30 +196,25 @@ const CampContest = ({ seasonList_, seasonData_ }) => {
196196
</ArchiveButton>
197197
</ArchiveWrap>
198198
)}
199-
{currentSeasonData.length !== 0 && currentSeasonData.date ? (
200-
<>
201-
<TextWrap
202-
title={"콘테스트 일자"}
203-
content={currentSeasonData.date}
204-
/>
205-
<TextWrap
206-
title={"캠프 콘테스트 소개"}
207-
content={`캠프 콘테스트는 캠프 기간동안 배운 알고리즘을 적용해볼 수 있는 모의고사 형식의 대회입니다.
199+
<TextWrap
200+
title={"콘테스트 일자"}
201+
content={
202+
currentSeasonData.length !== 0 && currentSeasonData.date
203+
? currentSeasonData.date
204+
: "이번 시즌에는 Camp Contest가 진행되지 않았습니다. 다음 시즌을 기대해 주세요."
205+
}
206+
/>
207+
<TextWrap
208+
title={"캠프 콘테스트 소개"}
209+
content={`캠프 콘테스트는 캠프 기간동안 배운 알고리즘을 적용해볼 수 있는 모의고사 형식의 대회입니다.
208210
개인전으로 진행되며, ICPC Sinchon Algorithm Camp 참가자만 참여할 수 있습니다.`}
209-
/>
210-
<TextWrap
211-
title={"출제 경향"}
212-
content={
213-
"ICPC Sinchon Algorithm Camp을 통해 학습한 대부분의 알고리즘을 문제로 다루는 것을 목표로 합니다."
214-
}
215-
/>
216-
</>
217-
) : (
218-
<TextWrap
219-
title={"이번 시즌에는 Camp Contest가 진행되지 않았습니다"}
220-
content={"다음 시즌을 기대해 주세요"}
221-
/>
222-
)}
211+
/>
212+
<TextWrap
213+
title={"출제 경향"}
214+
content={
215+
"ICPC Sinchon Algorithm Camp을 통해 학습한 대부분의 알고리즘을 문제로 다루는 것을 목표로 합니다."
216+
}
217+
/>
223218
{currentSeasonData.studies &&
224219
Array.from(currentSeasonData.studies).map((study) => {
225220
return (

0 commit comments

Comments
 (0)