From 059177c63519a7357f9ced2514b38b45967c6645 Mon Sep 17 00:00:00 2001 From: "claude (duplicate_chess)" Date: Tue, 19 May 2026 01:04:39 -0400 Subject: [PATCH] =?UTF-8?q?feat(ui):=20Board=20component=20=E2=80=94=20rot?= =?UTF-8?q?ated=20grid,=20coloured=20pieces,=20highlights,=20ghosts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/Board.svelte | 112 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 src/lib/Board.svelte diff --git a/src/lib/Board.svelte b/src/lib/Board.svelte new file mode 100644 index 0000000..45251d6 --- /dev/null +++ b/src/lib/Board.svelte @@ -0,0 +1,112 @@ + + +
+ {#each cells as cell, i (cell.square)} + + {/each} +
+ +