diff --git a/VoidCat/spa/src/Pages/Donate.js b/VoidCat/spa/src/Pages/Donate.js index f39d36e..6f74f57 100644 --- a/VoidCat/spa/src/Pages/Donate.js +++ b/VoidCat/spa/src/Pages/Donate.js @@ -1,6 +1,5 @@ import "./Donate.css" -import QRCode from "qrcode.react"; -import {Fragment, useState} from "react"; +import {useState} from "react"; export function Donate() { const Hostname = "pay.v0l.io"; @@ -9,16 +8,6 @@ export function Donate() { const [currency, setCurrency] = useState("USD"); const [price, setPrice] = useState(1); - const Links = [ - { - name: "Revolut", - url: "https://revolut.me/kieranh" - }, - { - name: "Strike", - url: "https://strike.me/kieran" - } - ]; return (

Donate with Bitcoin

@@ -40,16 +29,6 @@ export function Donate() { src={`https://${Hostname}/img/paybutton/pay.svg`} alt="Pay with BTCPay Server, a Self-Hosted Bitcoin Payment Processor"/> - - {Links.map(e => -

Donate with {e.name}

-

- {e.name} -

- -
)}
); } \ No newline at end of file