diff --git a/client/src/components/player.box.jsx b/client/src/components/player.box.jsx
index 29ee6532..2790d69f 100644
--- a/client/src/components/player.box.jsx
+++ b/client/src/components/player.box.jsx
@@ -70,22 +70,26 @@ function Scoreboard(args) {
const winner = player.score === 'Win';
if (!isPlayer) {
+ const nameClass = `name ${player.img ? 'subscriber' : ''}`;
return (
{scoreText()}
-
{player.name}
+
{player.name}
{chat || '\u00A0'}
);
}
+ const boxClass = `player-box bottom ${winner ? 'winner': player.ready ? 'ready' : ''}`;
+ const nameClass = `name ${player.img ? 'subscriber' : ''}`;
+
return (
-
+
{chat || '\u00A0'}
{scoreText()}
-
{player.name}
+
{player.name}
);
diff --git a/client/src/components/shop.jsx b/client/src/components/shop.jsx
index 08a79fad..7e23bc60 100644
--- a/client/src/components/shop.jsx
+++ b/client/src/components/shop.jsx
@@ -48,9 +48,12 @@ function Shop(args) {
ยค {account.balance}
-
-
-
+ {window.Stripe
+ ?
+
+
+ :
Please unblock Stripe to use the store
+ }
);
diff --git a/client/src/components/welcome.jsx b/client/src/components/welcome.jsx
index 6146b7a0..558e5719 100644
--- a/client/src/components/welcome.jsx
+++ b/client/src/components/welcome.jsx
@@ -8,7 +8,7 @@ const Help = require('./welcome.help');
const Demo = require('./demo');
function Welcome() {
- const page = this.state.page || 'login';
+ const page = this.state.page || 'register';
const navRegister = () => this.setState({ page: 'register' });
const pageEl = () => {
@@ -53,7 +53,7 @@ function Welcome() {
Welcome to mnml.
-
Turn-based 1v1 strategy game in an abstract setting.
+
MNML is a turn-based 1v1 strategy game in an abstract setting.
Build a unique team of 3 constructs from a range of skills and specialisations.
Outplay your opponent in multiple rounds by adapting to an always shifting meta.
@@ -62,6 +62,7 @@ function Welcome() {
Free to play, no pay to win. Register to start playing.
+
Tutorial Playthrough on YouTube
{pageEl()}
diff --git a/client/src/components/welcome.register.jsx b/client/src/components/welcome.register.jsx
index 99f8baed..68b6fedb 100644
--- a/client/src/components/welcome.register.jsx
+++ b/client/src/components/welcome.register.jsx
@@ -58,7 +58,7 @@ function Register(args) {
value={this.state.name}
onInput={linkState(this, 'name')}
/>
-