diff options
Diffstat (limited to 'site/src')
| -rw-r--r-- | site/src/components/TitleBar.tsx | 6 | ||||
| -rw-r--r-- | site/src/utils.ts | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx index cd3abf6..33963b7 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -39,6 +39,12 @@ const TitleBar: React.FC = () => { { id: "music_diver", title: "MUSIC DIVER" }, ], }, + { + name: "BANDAI NAMCO", + games: [ + { id: "taiko", title: "TAIKO" }, + ], + }, ]; useEffect(() => { diff --git a/site/src/utils.ts b/site/src/utils.ts index 412b4d5..77a1aa1 100644 --- a/site/src/utils.ts +++ b/site/src/utils.ts @@ -16,6 +16,7 @@ export const getGameTitle = (gameId: string) => { if (lowerCaseGameId.startsWith("nostalgia")) return "NOSTALGIA"; if (lowerCaseGameId.startsWith("popn_music")) return "pop'n music"; if (lowerCaseGameId.startsWith("music_diver")) return "MUSIC DIVER"; + if (lowerCaseGameId.startsWith("taiko")) return "Taiko no Tatsujin"; return gameId.toUpperCase(); |
