]> Untitled Git - lemmy.git/blobdiff - ui/src/components/sponsors.tsx
Updating code url references to https://github.com/LemmyNet/lemmy
[lemmy.git] / ui / src / components / sponsors.tsx
index 28f09002660b6853db0c12c3fa601ea9245152cf..643153e689aeb0a3da0ec27c5f21bd5c6517f829 100644 (file)
@@ -2,8 +2,14 @@ import { Component } from 'inferno';
 import { WebSocketService } from '../services';
 import { i18n } from '../i18next';
 import { T } from 'inferno-i18next';
+import { repoUrl } from '../utils';
 
-let general = ['Andre Vallestero', 'riccardo', 'NotTooHighToHack'];
+let general = [
+  'Nathan J. Goode',
+  'Andre Vallestero',
+  'riccardo',
+  'NotTooHighToHack',
+];
 let highlighted = ['Alex Benishek'];
 // let silver = [];
 // let gold = [];
@@ -39,10 +45,16 @@ export class Sponsors extends Component<any, any> {
         <h5>{i18n.t('donate_to_lemmy')}</h5>
         <p>
           <T i18nKey="sponsor_message">
-            #<a href="https://github.com/dessalines/lemmy">#</a>
+            #<a href={repoUrl}>#</a>
           </T>
         </p>
-        <a class="btn btn-secondary" href="https://www.patreon.com/dessalines">
+        <a class="btn btn-secondary" href="https://liberapay.com/Lemmy/">
+          {i18n.t('support_on_liberapay')}
+        </a>
+        <a
+          class="btn btn-secondary ml-2"
+          href="https://www.patreon.com/dessalines"
+        >
           {i18n.t('support_on_patreon')}
         </a>
       </div>