Load donation buttons from local

This commit is contained in:
sienori 2020-05-02 15:11:18 +09:00
parent 1410ec2dff
commit 51327964a8
3 changed files with 2 additions and 8 deletions

BIN
src/icons/patreonButton.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

BIN
src/icons/paypalButton.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -55,10 +55,7 @@ export default props => {
type={"none"}
extraCaption={
<a href={patreonLink} target="_blank">
<img
src="https://c5.patreon.com/external/logo/become_a_patron_button.png"
alt="Donate"
/>
<img src="/icons/patreonButton.png" alt="Donate" />
</a>
}
/>
@ -68,10 +65,7 @@ export default props => {
type={"none"}
extraCaption={
<a href={paypalLink} target="_blank">
<img
src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/checkout-logo-medium.png"
alt="Donate"
/>
<img src="/icons/paypalButton.png" alt="Donate" />
</a>
}
/>