diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-14 01:56:18 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-14 01:56:18 -0700 |
| commit | dc279404b1f6e371d6d7acd1380a265762e60218 (patch) | |
| tree | 85444616b0c98697bf060bb932557ae323a0c9ed /site/src | |
| parent | 147c36d207ca74e876b6b4703fd3f57f3ab57e56 (diff) | |
add maimai DX JPN scraping
Diffstat (limited to 'site/src')
| -rw-r--r-- | site/src/components/NewsFeed.tsx | 3 | ||||
| -rw-r--r-- | site/src/components/TitleBar.tsx | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/site/src/components/NewsFeed.tsx b/site/src/components/NewsFeed.tsx index f030200..99099be 100644 --- a/site/src/components/NewsFeed.tsx +++ b/site/src/components/NewsFeed.tsx @@ -132,5 +132,8 @@ function getGameName(identifier: string): string | null { else if(identifier.startsWith("CHUNITHM_JP")){ return "CHUNITHM (JAPAN)"; } + else if(identifier.startsWith("MAIMAIDX_JP")){ + return "maimai DX (JAPAN)" + } return null; } diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx index bf79191..d7cd1bf 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -21,7 +21,8 @@ const TitleBar: React.FC = () => { { name: "SEGA", games: [ - { id: "chunithm_jp", title: "CHUNITHM JPN" }, + { id: "chunithm_jp", title: "CHUNITHM (JPN)" }, + { id: "chunithm_jp", title: "maimai DX (JPN)" }, ] } ]; @@ -116,4 +117,4 @@ const TitleBar: React.FC = () => { ); }; -export default TitleBar;
\ No newline at end of file +export default TitleBar; |
