This commit is contained in:
2025-08-01 23:20:02 -04:00
parent 7e5bc73b0d
commit e6cee7c2fa
79 changed files with 316 additions and 8 deletions

15
src/components/Game.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { JSX } from "solid-js";
import Card from "./Card";
export default () => {
return (
<div
class="full center column"
style={{ "row-gap": "20px", "font-size": "32px" }}
>
games
<Card />
coming soon
</div>
);
};