extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.
at list 15 lines 278 B view raw
1--- 2let { row, col, state } = Astro.props; 3console.log(state); 4--- 5 6<style> 7 .cell { 8 background: burlywood; 9 box-shadow: inset 0px 0px 1px black; 10 height: 50px; 11 width: 50px; 12 } 13</style> 14 15<div class="cell" data-row={row} data-col={col}></div>