diff options
Diffstat (limited to 'site/src/components/GameNotes.tsx')
| -rw-r--r-- | site/src/components/GameNotes.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/site/src/components/GameNotes.tsx b/site/src/components/GameNotes.tsx new file mode 100644 index 0000000..0a72d01 --- /dev/null +++ b/site/src/components/GameNotes.tsx @@ -0,0 +1,17 @@ +import React from "react"; + +export const GameNotes = (isMoe: boolean): Record<string, React.ReactNode> => ({ + sdvx: ( + <> + <ul className={`mt-2 ${isMoe ? "text-pink-900" : "text-white"}`}> + <li>• [USA] PREMIUM GENERATOR gacha available only ONLINE</li> + <li>• VP/VOLTEFACTORY rewards only in Japan</li> + </ul> + <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 /> + Cabinets in Canada/Europe/Australia are on non-official private networks which are running older data + </p> + </> + ), +}); |
