diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-29 15:39:36 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-29 15:39:36 -0700 |
| commit | 83395fc908fecd237b2df137c123c3cd91a39b68 (patch) | |
| tree | d3ddc1fe0e54b7d5503ff34d17b4cc4c1d91510a | |
| parent | b255d5d33567d7b1fa0052ef81fee269ea0fe0f0 (diff) | |
frontend: add gamenotes to dance rush/around + PC
| -rw-r--r-- | site/src/components/GameNotes.tsx | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/site/src/components/GameNotes.tsx b/site/src/components/GameNotes.tsx index ead08a5..0e5504a 100644 --- a/site/src/components/GameNotes.tsx +++ b/site/src/components/GameNotes.tsx @@ -134,6 +134,48 @@ export const GameNotes = (isMoe: boolean): Record<string, React.ReactNode> => ({ </p> </> ), + dance_rush: ( + <> + <div className="flex justify-center"> + <EamuseMaintenancePopup isMoe={isMoe} /> + </div> + <p + className={`mt-3 ${isMoe ? "text-pink-800" : "text-pink-300"} text-right`} + > + Official e-amusement service in NA available only at Round1 USA + <br /> + Online Cabinets in non-supported regions (CAN/EU/AUS) are on private + networks which run older data + </p> + </> + ), + dance_around: ( + <> + <div className="flex justify-center"> + <EamuseMaintenancePopup isMoe={isMoe} /> + </div> + <p + className={`mt-3 ${isMoe ? "text-pink-800" : "text-pink-300"} text-right`} + > + Official e-amusement service in NA available only at Round1 USA + <br /> + Online Cabinets in non-supported regions (CAN/EU/AUS) are on private + networks which run older data + </p> + </> + ), + polaris_chord: ( + <> + <div className="flex justify-center"> + <EamuseMaintenancePopup isMoe={isMoe} /> + </div> + <p + className={`mt-3 ${isMoe ? "text-pink-800" : "text-pink-300"} text-right`} + > + Official e-amusement service only in Japan. + </p> + </> + ), ddr: ( <> <div className="flex justify-center"> |
