diff --git a/client/src/components/auth.rs b/client/src/components/auth.rs index d3f241d..bcf619c 100644 --- a/client/src/components/auth.rs +++ b/client/src/components/auth.rs @@ -48,7 +48,7 @@ pub fn Auth() -> impl IntoView {

Sign in:

- "You were already given a random name but if you'd like to change it this is the place. Reserve a username if you'd like to be able to reconnect and maintain your identity. (Granted the server doesn't crash because nothing persists yet)" + "You were already given a random name but if you'd like to change it this is the place. Identities are saved once created so if you leave or get disconnected just enter your old name here to \"log back in\". Please don't steal each other's identities (yes, you can)."


Username:

diff --git a/client/src/components/browser.rs b/client/src/components/browser.rs index 35f0cc4..405ec7e 100644 --- a/client/src/components/browser.rs +++ b/client/src/components/browser.rs @@ -62,6 +62,7 @@ pub fn Browser() -> impl IntoView {
Disconnected.

}>

Game Browser

+

"Yes, the delete button works. Please don't abuse it."

@@ -137,7 +138,7 @@ pub fn Browser() -> impl IntoView { - click custom at least once for the new game button to work. there are worse problems right now (sorry (kinda)) + "click custom at least once for the new game button to work. there are worse problems right now (sorry (kinda))" diff --git a/client/src/components/game.rs b/client/src/components/game.rs index f4c7774..f1a77fa 100644 --- a/client/src/components/game.rs +++ b/client/src/components/game.rs @@ -1,4 +1,4 @@ -use crate::components::cards::*; +use crate::components::game::cards::*; use crate::components::game::header::*; use crate::components::websocket::WebSocketContext; use leptos::*; @@ -6,6 +6,7 @@ use leptos_use::core::ConnectionReadyState; use lib::*; use serde_json::to_string; use std::collections::HashMap; +pub mod cards; pub mod header; pub mod meta; pub mod scoreboard; diff --git a/client/src/components/cards.rs b/client/src/components/game/cards.rs similarity index 100% rename from client/src/components/cards.rs rename to client/src/components/game/cards.rs diff --git a/client/src/components/mod.rs b/client/src/components/mod.rs index 4f663e7..03bec5c 100644 --- a/client/src/components/mod.rs +++ b/client/src/components/mod.rs @@ -1,6 +1,5 @@ pub mod auth; pub mod browser; -pub mod cards; pub mod chat; pub mod debug; pub mod game; diff --git a/client/src/pages/home.rs b/client/src/pages/home.rs index b81b34b..33b797a 100644 --- a/client/src/pages/home.rs +++ b/client/src/pages/home.rs @@ -35,9 +35,9 @@ pub fn Home() -> impl IntoView {

Hey!


- {"Welcome! Thank you for helping me test this. It's made out of glass right now so don't be too harsh but I would really like to know about any issues you find. Chances are you already know how to contact me but in case you don't you can find me at @whitedopeonpunk on discord and telegram or you can email me at "} + {"Welcome! Thank you for helping me test this. Please let me know about any issues you may come across. Chances are you already know how to contact me but in case you don't you can email me at "} adam@doordesk.net - {". If you manage to crash the server it'll be down until I notice, I built it brittle on purpose to see where it fails. This will get better with time. (I promise!)"} + {". The server may go down from time to time as bugs are found and as I add updates. If you manage to crash the server or notice it down for a long time please tell me about it."}


Have fun!