From 6b47b34ddffdff2c02e190c1e82ede2660ad3855 Mon Sep 17 00:00:00 2001 From: calli Date: Wed, 7 Jan 2026 09:02:16 +0200 Subject: [PATCH] add buy me a beer button --- src/app/components/AppBar/AppBar.tsx | 5 +++++ .../BuyMeCoffee/BuyMeCoffeeButton.tsx | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/app/components/BuyMeCoffee/BuyMeCoffeeButton.tsx diff --git a/src/app/components/AppBar/AppBar.tsx b/src/app/components/AppBar/AppBar.tsx index 72482d4..3a52908 100644 --- a/src/app/components/AppBar/AppBar.tsx +++ b/src/app/components/AppBar/AppBar.tsx @@ -17,6 +17,7 @@ import { GitHubButton } from "../Github/GitHubButton"; import { LoginButton } from "../Login/LoginButton"; import { PartnerCodeButton } from "../PartnerCode/PartnerCodeButton"; import { SettingsButton } from "../Settings/SettingsButtons"; +import { BuyMeCoffeeButton } from "../BuyMeCoffee/BuyMeCoffeeButton"; import { Button, Dialog, @@ -132,6 +133,9 @@ function ResponsiveAppBar() { + + + @@ -173,6 +177,7 @@ function ResponsiveAppBar() { + diff --git a/src/app/components/BuyMeCoffee/BuyMeCoffeeButton.tsx b/src/app/components/BuyMeCoffee/BuyMeCoffeeButton.tsx new file mode 100644 index 0000000..50066c5 --- /dev/null +++ b/src/app/components/BuyMeCoffee/BuyMeCoffeeButton.tsx @@ -0,0 +1,17 @@ +import { Box, Button, Tooltip } from "@mui/material"; +export const BuyMeCoffeeButton = () => { + return ( + + + + + + ); +};