summaryrefslogtreecommitdiffstats
path: root/ui/src/components/sponsors.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-05-17 16:49:34 -0400
committerDessalines <tyhou13@gmx.com>2020-05-17 16:49:34 -0400
commit6fe3d4304920e52a0d27d71bc1a05fdea4915dc5 (patch)
treea453f8f389652d0e57743727f7c64b1b3db5bf4c /ui/src/components/sponsors.tsx
parent6fe4184f72ca39011a62c8df572ae419a1288334 (diff)
Adding a sponsor.
Diffstat (limited to 'ui/src/components/sponsors.tsx')
-rw-r--r--ui/src/components/sponsors.tsx24
1 files changed, 23 insertions, 1 deletions
diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx
index b0b7e5f6..95306d35 100644
--- a/ui/src/components/sponsors.tsx
+++ b/ui/src/components/sponsors.tsx
@@ -4,6 +4,11 @@ import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
import { repoUrl } from '../utils';
+interface SilverUser {
+ name: string;
+ link: string;
+}
+
let general = [
'Forrest Weghorst',
'Serge Tarkovski',
@@ -13,7 +18,12 @@ let general = [
'NotTooHighToHack',
];
let highlighted = ['Oskenso Kashi', 'Alex Benishek'];
-// let silver = [];
+let silver: Array<SilverUser> = [
+ {
+ name: 'Redjoker',
+ link: 'https://redcard.iww.org/user/register',
+ },
+];
// let gold = [];
// let latinum = [];
@@ -72,6 +82,18 @@ export class Sponsors extends Component<any, any> {
return (
<div class="container">
<h5>{i18n.t('sponsors')}</h5>
+ <p>{i18n.t('silver_sponsors')}</p>
+ <div class="row card-columns">
+ {silver.map(s => (
+ <div class="card col-12 col-md-2">
+ <div>
+ <a href={s.link} target="_blank">
+ 💎 {s.name}
+ </a>
+ </div>
+ </div>
+ ))}
+ </div>
<p>{i18n.t('general_sponsors')}</p>
<div class="row card-columns">
{highlighted.map(s => (