From 6936cb29693b216f2463fe2d4d012e551347d031 Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 3 Oct 2022 18:50:52 +0200 Subject: [PATCH] Re-add donate link. --- source/options/components/page-footer.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/source/options/components/page-footer.ts b/source/options/components/page-footer.ts index f66087b..347e682 100644 --- a/source/options/components/page-footer.ts +++ b/source/options/components/page-footer.ts @@ -12,6 +12,13 @@ export class PageFooter extends Component { const {manifest} = this.props; const version = manifest.version; + const donateAttributes = { + href: 'https://liberapay.com/Holllo', + }; + const donateLink = html` + <${PrivacyLink} attributes="${donateAttributes}">Donate + `; + const versionLinkAttributes = { href: `https://git.bauke.xyz/Holllo/fangs/releases/tag/${version}`, }; @@ -21,7 +28,10 @@ export class PageFooter extends Component { return html` `; }