Skip to content

Commit d7919b1

Browse files
committed
📚 Add descriptions (#1569)
1 parent b333d0e commit d7919b1

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

src/lib/components/TaskGrades/GradeGuidelineTable.svelte

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,25 @@
88
TableHeadCell,
99
} from 'flowbite-svelte';
1010
11+
import ExternalLinkWrapper from '$lib/components/ExternalLinkWrapper.svelte';
1112
import { gradeGuidelineTableData } from '$lib/components/TaskGrades/grade_guideline_table_data';
1213
import GradeLabel from '$lib/components/GradeLabel.svelte';
14+
15+
import { TASK_GRADE_CRITERIA_SHEET_URL } from '$lib/constants/urls';
1316
</script>
1417

15-
<div class="container w-full lg:w-2/3 mx-auto mt-6 lg:mt-10 overflow-auto rounded-md border">
18+
<div class="container mx-auto w-5/6 lg:w-2/3 mt-6 text-gray-800 dark:text-gray-300">
19+
<div>
20+
AtCoder Beginners Contest(通称、ABC)の配点・問題と、対応するグレードの目安を示しています。
21+
</div>
22+
<div>
23+
また、各グレードの基準に関しては、
24+
<ExternalLinkWrapper url={TASK_GRADE_CRITERIA_SHEET_URL} description="こちら" />
25+
をご覧ください。
26+
</div>
27+
</div>
28+
29+
<div class="container w-full lg:w-2/3 mx-auto mt-3 sm:mt-4 overflow-auto rounded-md border">
1630
<Table
1731
shadow
1832
id="grade-guideline"

src/lib/constants/urls.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ export const AOJ_PCK_URL: string = 'https://pro-ktmr.github.io/aoj-pck/';
2222
export const ICPC_JAPAN_PROBLEMS_URL: string = 'https://icpc-japan-problems.irrrrr.cc/';
2323

2424
export const GITHUB_URL: string = 'https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps';
25+
26+
export const TASK_GRADE_CRITERIA_SHEET_URL: string =
27+
'https://docs.google.com/spreadsheets/d/1GJbTRRBsoBaY-CXIr3dIXmxkwacV4nHOTOIMCmo__Ug/';

0 commit comments

Comments
 (0)