Skip to content

Commit

Permalink
📚 Add descriptions (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
KATO-Hiro committed Dec 22, 2024
1 parent b333d0e commit d7919b1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/lib/components/TaskGrades/GradeGuidelineTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,25 @@
TableHeadCell,
} from 'flowbite-svelte';
import ExternalLinkWrapper from '$lib/components/ExternalLinkWrapper.svelte';
import { gradeGuidelineTableData } from '$lib/components/TaskGrades/grade_guideline_table_data';
import GradeLabel from '$lib/components/GradeLabel.svelte';
import { TASK_GRADE_CRITERIA_SHEET_URL } from '$lib/constants/urls';
</script>

<div class="container w-full lg:w-2/3 mx-auto mt-6 lg:mt-10 overflow-auto rounded-md border">
<div class="container mx-auto w-5/6 lg:w-2/3 mt-6 text-gray-800 dark:text-gray-300">
<div>
AtCoder Beginners Contest(通称、ABC)の配点・問題と、対応するグレードの目安を示しています。
</div>
<div>
また、各グレードの基準に関しては、
<ExternalLinkWrapper url={TASK_GRADE_CRITERIA_SHEET_URL} description="こちら" />
をご覧ください。
</div>
</div>

<div class="container w-full lg:w-2/3 mx-auto mt-3 sm:mt-4 overflow-auto rounded-md border">
<Table
shadow
id="grade-guideline"
Expand Down
3 changes: 3 additions & 0 deletions src/lib/constants/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ export const AOJ_PCK_URL: string = 'https://pro-ktmr.github.io/aoj-pck/';
export const ICPC_JAPAN_PROBLEMS_URL: string = 'https://icpc-japan-problems.irrrrr.cc/';

export const GITHUB_URL: string = 'https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps';

export const TASK_GRADE_CRITERIA_SHEET_URL: string =
'https://docs.google.com/spreadsheets/d/1GJbTRRBsoBaY-CXIr3dIXmxkwacV4nHOTOIMCmo__Ug/';

0 comments on commit d7919b1

Please sign in to comment.