diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-06-16 19:27:11 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-06-16 19:27:11 -0700 |
| commit | ba74f5fd137d6b772e8f5a5f89dc7147ee741f92 (patch) | |
| tree | 16feb85e3f2c474de00c4705a765aa76c42ea37e /site/src/components | |
| parent | 37a18a1e699567115ec038c04e3789f41b38e525 (diff) | |
frontend: display street fighter and idac
Diffstat (limited to 'site/src/components')
| -rw-r--r-- | site/src/components/GameNotes.tsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/site/src/components/GameNotes.tsx b/site/src/components/GameNotes.tsx index 0b2a49d..2ef9335 100644 --- a/site/src/components/GameNotes.tsx +++ b/site/src/components/GameNotes.tsx @@ -331,6 +331,20 @@ export const GameNotes = (isMoe: boolean): Record<string, React.ReactNode> => ({ </p> </> ), + idac: ( + <> + <p + className={`mt-3 ${isMoe ? "text-pink-800" : "text-pink-300"} text-center`} + > + Official service only in Japan. No International Version + </p> + <p + className={`mt-3 ${isMoe ? "text-pink-800" : "text-pink-300"} text-center`} + > + You are on a private network if the cabinet is not in Japan + </p> + </> + ), chunithm_intl: ( <> <ul className={`mt-2 ${isMoe ? "text-pink-900" : "text-white"}`}> @@ -395,6 +409,18 @@ export const GameNotes = (isMoe: boolean): Record<string, React.ReactNode> => ({ </p> </> ), + street_fighter: ( + <> + <div className="flex justify-center"> + <NesicaMaintenancePopup isMoe={isMoe} /> + </div> + <p + className={`mt-3 ${isMoe ? "text-pink-800" : "text-pink-300"} text-center`} + > + Online service in USA only at Round1 locations + </p> + </> + ), wacca_plus: ( <> <p |
