chore: add buttons for each game

This commit is contained in:
Mikhail Saveliev 2024-01-08 19:07:32 +05:00
parent d0e90abb4f
commit 8c919da199
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,7 @@
export const RPSPlayButton = () => {
return (
<button className="bg-rose-700 rounded-[100px] shadow text-white text-2xl font-bold py-5 px-10 hover:bg-rose-600">
Играть
</button>
)
}

View file

@ -0,0 +1,7 @@
export const SlotPlayButton = () => {
return (
<button className="bg-rose-700 rounded-[100px] shadow text-white text-2xl font-bold py-5 px-10 hover:bg-rose-600">
Крутить
</button>
)
}