Skip to content

Commit 3ba14a2

Browse files
committed
chore: reorder exhibitions
1 parent b509d2e commit 3ba14a2

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

src/exhibitions.ts

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ type Exhibition = {
2626

2727
export const exhibitions: Exhibition[] = [
2828
{
29-
// disabled: true,
30-
title: "AIとオセロ",
29+
title: "Shortcut Puzzle",
3130
image: {
32-
src: "img/othello.png",
33-
alt: "オセロのイメージ",
31+
src: "img/shortcut.png",
32+
alt: "Shortcutゲームのイメージ",
3433
},
3534
description: `
36-
6 × 6マスのちょっと小さいオセロで、AIと対戦してみましょう!勝つのはちょっと難しいかも!?オセロを通じて「AIと対戦する楽しさ」や「AIがどのようなものかを理解するきっかけ」にもなります。さあ、あなたの戦略でAIを打ち負かしてみませんか?
35+
あなたは普段ショートカットキーを使ってますか?いつも多用している方も初めて聞いた方も、ショートカットを魔法のように操りましょう!2Dアクションパズルゲームの「Shortcut Puzzle」をぜひ遊んでみてください!
36+
3737
`,
38-
url: "https://boardgame.utcode.net/",
39-
isNew: false,
38+
url: "https://shortcut-game.utcode.net/",
39+
isNew: true,
4040
target: "どなたでも",
41-
takes: timeEst.short,
41+
takes: timeEst.med,
4242
},
4343
{
4444
title: "はじめてのプログラミング 迷路",
@@ -55,31 +55,17 @@ export const exhibitions: Exhibition[] = [
5555
takes: timeEst.med,
5656
},
5757
{
58-
title: "Shortcut Puzzle",
59-
image: {
60-
src: "img/shortcut.png",
61-
alt: "Shortcutゲームのイメージ",
62-
},
63-
description: `
64-
あなたは普段ショートカットキーを使ってますか?いつも多用している方も初めて聞いた方も、ショートカットを魔法のように操りましょう!2Dアクションパズルゲームの「Shortcut Puzzle」をぜひ遊んでみてください!
65-
66-
`,
67-
url: "https://shortcut-game.utcode.net/",
68-
isNew: true,
69-
target: "どなたでも",
70-
takes: timeEst.med,
71-
},
72-
{
73-
title: "Falling Nikochan",
58+
// disabled: true,
59+
title: "AIとオセロ",
7460
image: {
75-
src: "img/nikochan_tetoris.webp",
76-
alt: "Nikochanのイメージ",
61+
src: "img/othello.png",
62+
alt: "オセロのイメージ",
7763
},
7864
description: `
79-
シンプルでかわいいリズムゲーム (音ゲー) です。 PC だけでなくタブレットやスマートフォンなどでも手軽に遊べます。さらに、アカウント登録やログイン不要で誰でも譜面を作成することができます。
65+
6 × 6マスのちょっと小さいオセロで、AIと対戦してみましょう!勝つのはちょっと難しいかも!?オセロを通じて「AIと対戦する楽しさ」や「AIがどのようなものかを理解するきっかけ」にもなります。さあ、あなたの戦略でAIを打ち負かしてみませんか?
8066
`,
81-
url: "https://nikochan.utcode.net/?fes=mf98", // クエリパラメータで戻るボタンの表示が変わるようになっています
82-
isNew: true,
67+
url: "https://boardgame.utcode.net/",
68+
isNew: false,
8369
target: "どなたでも",
8470
takes: timeEst.short,
8571
},
@@ -177,4 +163,18 @@ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eos sint est omnis inc
177163
target: "どなたでも",
178164
takes: timeEst.med,
179165
},
166+
{
167+
title: "Falling Nikochan",
168+
image: {
169+
src: "img/nikochan_tetoris.webp",
170+
alt: "Nikochanのイメージ",
171+
},
172+
description: `
173+
シンプルでかわいいリズムゲーム (音ゲー) です。 PC だけでなくタブレットやスマートフォンなどでも手軽に遊べます。さらに、アカウント登録やログイン不要で誰でも譜面を作成することができます。
174+
`,
175+
url: "https://nikochan.utcode.net/?fes=mf98", // クエリパラメータで戻るボタンの表示が変わるようになっています
176+
isNew: true,
177+
target: "どなたでも",
178+
takes: timeEst.short,
179+
},
180180
];

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
22
import Layout from "@theme/Layout";
33
import Heading from "@theme/Heading";
4-
import { exhibitions } from "../exhibitions";
4+
import { exhibitions } from "../exhibitions.ts";
55

66
const trackerURL = "https://" + "tracker.ut-code.workers" + ".dev";
77

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// This file is not used in compilation. It is here just for a nice editor experience.
33
"extends": "@docusaurus/tsconfig",
44
"compilerOptions": {
5-
"baseUrl": "."
5+
"baseUrl": ".",
6+
"allowImportingTsExtensions": true
67
}
78
}

0 commit comments

Comments
 (0)