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 (
+
+
+
+
+
+ );
+};