diff --git a/frontend/src/routes/play/+page.svelte b/frontend/src/routes/play/+page.svelte index 15ad61d..24e6084 100644 --- a/frontend/src/routes/play/+page.svelte +++ b/frontend/src/routes/play/+page.svelte @@ -41,6 +41,11 @@ let wordStatus = $state({ 5: null, 6: null }); let wsStatus = $state(null); + // Decorative Word-Search tile motif: a 6×5 letter grid with BYTES "found" down the diagonal. + const WS_GRID = ['B', 'R', 'O', 'A', 'E', 'S', 'K', 'Y', 'I', 'M', 'U', 'H', 'G', 'E', 'T', + 'B', 'O', 'R', 'F', 'I', 'N', 'E', 'L', 'A', 'Z', 'O', 'S', 'T', 'S', 'Y']; + const WS_HL = new Set([0, 7, 14, 21, 28]); // the diagonal B-Y-T-E-S cells + function readWord(v) { try { const s = JSON.parse(localStorage.getItem(`goodnews:word:${v}:${date}`) || 'null'); @@ -274,18 +279,26 @@
- - + + {#if view !== 'hub'} + + {/if} {#if view === 'hub'}
- -

Play

- -

A few little games, fresh every morning. Pick one and dive in.

+
+ +

Play

+ +

A few little games, fresh every morning. Pick one and dive in.

+
+
@@ -303,10 +316,7 @@