mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-07-23 09:56:57 +00:00
rudimentary buttons
This commit is contained in:
@@ -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
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user