Skip to content

Commit

Permalink
mistakenly did not include the buy me a coffee link
Browse files Browse the repository at this point in the history
  • Loading branch information
Bamboooz committed Feb 4, 2024
1 parent 6d1f815 commit 41fee8f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ const App = () => {
window.open("https://github.com/Bamboooz", "_blank");
}

const openBuyMeACoffeePage = () => {
window.open("https://www.buymeacoffee.com/Bamboooz", "_blank");
}

return (
<div className="App">
{/* stars */}
Expand All @@ -28,7 +32,7 @@ const App = () => {
<button onClick={openGithubPage} className="github-button">
<PiGithubLogo size={32} />
</button>
<button onClick={openGithubPage} className="github-button">
<button onClick={openBuyMeACoffeePage} className="github-button">
<CiCoffeeBean size={32} />
</button>
</div>
Expand Down

0 comments on commit 41fee8f

Please sign in to comment.