rudimentary buttons

This commit is contained in:
2026-06-02 21:02:46 +02:00
parent 1251921ea1
commit 19c2951cc3
6 changed files with 48 additions and 7 deletions
+3 -3
View File
@@ -33,7 +33,7 @@ const Chessboard = () => {
<div className="flex gap-4">
<button
className="cursor-pointer"
className="btn btn-primary"
type="button"
onClick={handleClearGame}
>
@@ -41,7 +41,7 @@ const Chessboard = () => {
</button>
<button
className="cursor-pointer"
className="btn btn-secondary"
type="button"
onClick={handleSavePgn}
disabled={!gameState.pgn}
@@ -50,7 +50,7 @@ const Chessboard = () => {
</button>
<button
className="cursor-pointer"
className="btn btn-secondary"
type="button"
onClick={handleSavePdf}
disabled={!gameState.pgn || generatingPdf}
+1 -4
View File
@@ -23,10 +23,7 @@ const Home = () => (
Upload and convert your games into a book format, along with variation
and annotations.
</h2>
<Link
to="/chessboard"
className="rounded-3xl text-xl font-bold btn btn-primary"
>
<Link to="/chessboard" className="btn btn-primary btn-large">
Get Started
</Link>
</div>