Commit 0c6d2a77 authored by Grant's avatar Grant
Browse files

add tip jar button

parent 18624654
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -6,6 +6,8 @@ import {
  SiMatrix,
} from "@icons-pack/react-simple-icons";
import { DISCORD_INVITE, MATRIX_INVITE } from "../../lib/constants";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faDollarSign } from "@fortawesome/free-solid-svg-icons";

export const InfoButtons = () => {
  return (
@@ -50,6 +52,17 @@ export const InfoButtons = () => {
        <SiMastodon size={18} />
        <p>Mastodon</p>
      </Button>
      <Button
        as={Link}
        size="sm"
        href="https://tips.sc07.com"
        target="_blank"
        variant="ghost"
        color="success"
      >
        <FontAwesomeIcon icon={faDollarSign} style={{ fontSize: 16 }} />
        <p>Tip Jar</p>
      </Button>
    </div>
  );
};