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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

- 問題の回答状況の記録
- 問題一覧: 難易度(ヒューリスティックな判断を含む)を見て、問題を探す
- 問題集(アルファ版): 特定のトピックに関する例題・類題を集中して解く
- 問題集: 特定のトピックに関する例題・類題を集中して解く

## 予備知識

Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants/navbar-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const ACCOUNT_TRANSFER_PAGE = `/account_transfer`;

export const navbarLinks = [
{ title: `ホーム`, path: HOME_PAGE },
{ title: `問題集(アルファ版)`, path: WORKBOOKS_PAGE },
{ title: `問題集`, path: WORKBOOKS_PAGE },
{ title: `問題一覧`, path: PROBLEMS_PAGE },
{ title: `サービスの説明`, path: ABOUT_PAGE },
];
Expand Down
2 changes: 1 addition & 1 deletion src/routes/workbooks/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</script>

<div class="container mx-auto w-5/6">
<HeadingOne title="問題集(アルファ版)" />
<HeadingOne title="問題集" />

<!-- TODO: フィルタリング機能などが実装できたら、一般ユーザも問題集を作成できるようにする -->
{#if role === Roles.ADMIN}
Expand Down
Loading