Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/lib/constants/external-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import {
ATCODER_PROBLEMS_URL,
AOJ_ATCODER_JOI_URL,
AOJ_PCK_URL,
ICPC_JAPAN_PROBLEMS_URL,
X_URL,
MOND_URL,
GITHUB_URL,
} from './urls';

Expand All @@ -12,6 +13,7 @@ export const externalLinks = [
{ title: `AtCoder Problems`, path: ATCODER_PROBLEMS_URL },
{ title: `AOJ / AtCoder-JOI`, path: AOJ_ATCODER_JOI_URL },
{ title: `AOJ-PCK`, path: AOJ_PCK_URL },
{ title: `ICPC Japan Problems`, path: ICPC_JAPAN_PROBLEMS_URL },
{ title: `X`, path: X_URL },
{ title: `mond`, path: MOND_URL },
{ title: `GitHub`, path: GITHUB_URL },
];
2 changes: 1 addition & 1 deletion src/lib/constants/navbar-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export const navbarLinks = [
export const navbarDashboardLinks = [
{ title: `問題のインポート`, path: IMPORTING_PROBLEMS_PAGE },
{ title: `一覧表`, path: PROBLEMS_PAGE },
{ title: `投票管理`, path: VOTE_MANAGEMENT_PAGE },
{ title: `問題集`, path: WORKBOOKS_PAGE },
{ title: `問題集(並び替え)`, path: WORKBOOKS_ORDER_PAGE },
{ title: `タグ一覧`, path: TAGS_PAGE },
{ title: `アカウント移行`, path: ACCOUNT_TRANSFER_PAGE },
{ title: `投票管理`, path: VOTE_MANAGEMENT_PAGE },
];
4 changes: 3 additions & 1 deletion src/lib/constants/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export const AOJ_ATCODER_JOI_URL: string = 'https://joi.goodbaton.com/';

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 X_URL: string = 'https://x.com/acnovisteps';

export const MOND_URL: string = 'https://mond.how/ja/acnovisteps';

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

Expand Down
Loading