diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-19 14:19:16 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-19 14:19:16 -0700 |
| commit | 27744272ecbf999f1ab1be19a09aeb06f9eb4d5c (patch) | |
| tree | 7808acdfcf14e17759b31b97121f3829495df6a6 /site/src/components/GameNotes.tsx | |
| parent | 3bdb58c807352b88c27630ed7d1ee79c6eaa689d (diff) | |
the moekyun special update
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> + </> + ), +}); |
