-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update 2024 Winter Contents #14
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
2b99b58
Add 2024 Winter SUAPC data
2093ab 149abdf
Add 2024 Winter HallOfFame data
2093ab 9b35ea6
Update Camp Contest not held
2093ab 554f967
Add backdrop-filter for Header
2093ab 50530f6
Resize Header Font Size
2093ab c93ad9c
Add Camp Contest Introduction for 2024W
2093ab 17e1ba0
Fix 2023W Solution Link
2093ab File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
NEXT_PUBLIC_CURRENT_SUAPC_SEASON="2023 Summer" | ||
NEXT_PUBLIC_CURRENT_HALLOFFAME_SEASON="2023 Summer" | ||
NEXT_PUBLIC_CURRENT_SUAPC_SEASON="2024 Winter" | ||
NEXT_PUBLIC_CURRENT_HALLOFFAME_SEASON="2024 Winter" | ||
NEXT_PUBLIC_URL="http://localhost:4789" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
NEXT_PUBLIC_CURRENT_SUAPC_SEASON="2023 Summer" | ||
NEXT_PUBLIC_CURRENT_HALLOFFAME_SEASON="2023 Summer" | ||
NEXT_PUBLIC_CURRENT_SUAPC_SEASON="2024 Winter" | ||
NEXT_PUBLIC_CURRENT_HALLOFFAME_SEASON="2024 Winter" | ||
NEXT_PUBLIC_URL="https://icpc-sinchon.io" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,10 +117,10 @@ const Suapc = () => { | |
return ( | ||
<Layout> | ||
<Head> | ||
<title>SUAPC 2023 | ICPC Sinchon</title> | ||
<title>SUAPC 2024 | ICPC Sinchon</title> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:locale" content="ko_KR" /> | ||
<meta property="og:title" content="SUAPC 2023 | ICPC Sinchon" /> | ||
<meta property="og:title" content="SUAPC 2024 | ICPC Sinchon" /> | ||
<meta property="og:url" content="https://icpc-sinchon.io/suapc" /> | ||
<meta | ||
property="og:description" | ||
|
@@ -163,7 +163,7 @@ const Suapc = () => { | |
<ArchiveButton | ||
disabled={!Boolean(currentSeasonData.fileNames.solutionPdf)} | ||
href={ | ||
(currentSeasonIdx !== 0 ? "https://api.suapc.kr/" : "/res/") + | ||
(currentSeasonIdx > 1 ? "https://api.suapc.kr/" : "/res/") + | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이건 지금 시즌에는 api를 이용해서 사진 가져오는 대신 public/res 폴더 사진 쓰려고 그런 게 맞죠? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 네넵 pdf랑 포스터를 서버에 못 올려둬서 일단 이렇게 바꿨어요 |
||
`${currentYear}${currentSeason === "Winter" ? "w" : "s"}/${ | ||
currentSeasonData.fileNames.solutionPdf | ||
}` | ||
|
@@ -180,7 +180,7 @@ const Suapc = () => { | |
<ArchiveButton | ||
disabled={!Boolean(currentSeasonData.fileNames.posterImage)} | ||
href={ | ||
(currentSeasonIdx !== 0 ? "https://api.suapc.kr/" : "/res/") + | ||
(currentSeasonIdx > 1 ? "https://api.suapc.kr/" : "/res/") + | ||
`${currentYear}${currentSeason === "Winter" ? "w" : "s"}/${ | ||
currentSeasonData.fileNames.posterImage | ||
}` | ||
|
@@ -204,10 +204,10 @@ const Suapc = () => { | |
<span style={{ fontSize: "smaller" }}>12/05부터</span> | ||
</AdmissionButton> */} | ||
<AdmissionButton | ||
disabled={!Boolean(currentSeasonData.fileNames.posterImage)} | ||
disabled={!Boolean(currentSeasonData?.fileNames?.posterImage)} | ||
href={`https://api.suapc.kr/${currentYear}${ | ||
currentSeason === "Winter" ? "w" : "s" | ||
}/${currentSeasonData.fileNames.posterImage}`} | ||
}/${currentSeasonData?.fileNames?.posterImage}`} | ||
> | ||
공식 포스터 | ||
</AdmissionButton> | ||
|
@@ -325,7 +325,7 @@ const Suapc = () => { | |
<ArchiveButton | ||
disabled={!Boolean(currentSeasonData.fileNames.solutionPdf)} | ||
href={ | ||
(currentSeasonIdx !== 0 ? "https://api.suapc.kr/" : "/res/") + | ||
(currentSeasonIdx > 1 ? "https://api.suapc.kr/" : "/res/") + | ||
`${currentYear}${currentSeason === "Winter" ? "w" : "s"}/${ | ||
currentSeasonData.fileNames.solutionPdf | ||
}` | ||
|
@@ -342,7 +342,7 @@ const Suapc = () => { | |
<ArchiveButton | ||
disabled={!Boolean(currentSeasonData.fileNames.posterImage)} | ||
href={ | ||
(currentSeasonIdx !== 0 ? "https://api.suapc.kr/" : "/res/") + | ||
(currentSeasonIdx > 1 ? "https://api.suapc.kr/" : "/res/") + | ||
`${currentYear}${currentSeason === "Winter" ? "w" : "s"}/${ | ||
currentSeasonData.fileNames.posterImage | ||
}` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
{ | ||
"year": 2024, | ||
"season": "Winter", | ||
"studies": [ | ||
{ | ||
"topic": "초급", | ||
"lecturers": [ | ||
{ | ||
"name": "박찬솔", | ||
"school": "숭실대", | ||
"handle": "chansol" | ||
}, | ||
{ | ||
"name": "채성우", | ||
"school": "서강대", | ||
"handle": "lem0nad3" | ||
}, | ||
{ | ||
"name": "황채원", | ||
"school": "이화여대", | ||
"handle": "chaerryos" | ||
} | ||
], | ||
"mentors": [ | ||
{ | ||
"name": "이성진", | ||
"school": "서강대", | ||
"handle": "moralbook" | ||
}, | ||
{ | ||
"name": "이지언", | ||
"school": "연세대", | ||
"handle": "ez_code" | ||
}, | ||
{ | ||
"name": "천민재", | ||
"school": "홍익대", | ||
"handle": "open_mind" | ||
} | ||
], | ||
"curriculum": [ | ||
"Problem Solving, Time complexity, Basic C++, Linear data structure", | ||
"Sorting", | ||
"Basic Math", | ||
"Prefix Sum, Two Pointer", | ||
"BruteForcing, Recursive Function", | ||
"Dynamic Programming", | ||
"Binary Search, Divide and Conquer", | ||
"Tree, Graph", | ||
"DFS, BFS", | ||
"Dijkstra" | ||
] | ||
}, | ||
{ | ||
"topic": "중급", | ||
"lecturers": [ | ||
{ | ||
"name": "김건우", | ||
"school": "연세대", | ||
"handle": "coconut99" | ||
}, | ||
{ | ||
"name": "김영현", | ||
"school": "서울대", | ||
"handle": "kipa00" | ||
}, | ||
{ | ||
"name": "김태윤", | ||
"school": "연세대", | ||
"handle": "ystaeyoon113" | ||
} | ||
], | ||
"mentors": [ | ||
{ | ||
"name": "길수민", | ||
"school": "숙명여대", | ||
"handle": "2093ab" | ||
}, | ||
{ | ||
"name": "박경욱", | ||
"school": "연세대", | ||
"handle": "sk091204091204" | ||
}, | ||
{ | ||
"name": "이협", | ||
"school": "연세대", | ||
"handle": "dlguq0107" | ||
} | ||
], | ||
"curriculum": [ | ||
"Shortest Path Algorithms", | ||
"Dynamic Programming (1)", | ||
"Segment Tree", | ||
"Number Theory", | ||
"Problem Solving Session (1)", | ||
"Tree Algorithms", | ||
"Greedy Algorithm", | ||
"Dynamic Programming (2)", | ||
"String Algorithms", | ||
"Problem Solving Session (2)" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[ | ||
"2024 Winter", | ||
"2023 Summer", | ||
"2023 Winter", | ||
"2022 Summer", | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
어차피 이후 많은 수정이 있겠지만 이왕 헤더 바꾼거 글씨 크기도 조금만 키우죠. DesktopTopbarItem, MobileTopbarItem글씨 크기를 1rem으로 바꾸기만 하는 걸로...