1
Fork 0

Use buttons

This commit is contained in:
Hadeed 2024-06-01 00:48:24 +04:00
parent feccf5300a
commit c25d9aa975

View file

@ -59,14 +59,14 @@ export default () => {
</div> </div>
</div> </div>
<div className="flex w-full flex-col items-center justify-between space-y-[20px]"> <div className="flex w-full flex-col items-center justify-between space-y-[20px]">
<div className="flex w-full items-center justify-center rounded-[15px] bg-yellow-700 p-[17px] drop-shadow-[0_8px_0_#CC8B13] hover:bg-yellow-400"> <button className="flex w-full items-center justify-center rounded-[15px] bg-yellow-700 p-[17px] drop-shadow-[0_8px_0_#CC8B13] hover:bg-yellow-400">
<p className="text-h-s text-navy-700 uppercase">New game (vs cpu)</p> <p className="text-h-s text-navy-700 uppercase">New game (vs cpu)</p>
</div> </button>
<div className="flex w-full items-center justify-center rounded-[15px] bg-blue-700 p-[17px] drop-shadow-[0_8px_0_#118C87] hover:bg-blue-400"> <button className="flex w-full items-center justify-center rounded-[15px] bg-blue-700 p-[17px] drop-shadow-[0_8px_0_#118C87] hover:bg-blue-400">
<p className="text-h-s text-navy-700 uppercase"> <p className="text-h-s text-navy-700 uppercase">
New game (vs player) New game (vs player)
</p> </p>
</div> </button>
</div> </div>
</div> </div>
); );