Skip to content

Commit

Permalink
Make buttons look nicer
Browse files Browse the repository at this point in the history
  • Loading branch information
bfullam committed Apr 12, 2024
1 parent 6b58eae commit ac8f1c9
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,24 @@ const Home: NextPage = () => {
</div>
</div>

<button onClick={() => fundTBA()}>FUND TBA</button>
<button onClick={() => createAccount()}>CREATE ACCOUNT</button>
<button onClick={() => transferETH()}>TRANSFER ETH</button>
<button
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-5"
onClick={() => fundTBA()}
>
FUND TBA
</button>
<button
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-5"
onClick={() => createAccount()}
>
CREATE ACCOUNT
</button>
<button
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-5"
onClick={() => transferETH()}
>
TRANSFER ETH
</button>
</div>
</>
);
Expand Down

0 comments on commit ac8f1c9

Please sign in to comment.