summaryrefslogtreecommitdiffstats
path: root/ui/src/components/sponsors.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/sponsors.tsx')
-rw-r--r--ui/src/components/sponsors.tsx29
1 files changed, 26 insertions, 3 deletions
diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx
index cdd7bdad..35ec7635 100644
--- a/ui/src/components/sponsors.tsx
+++ b/ui/src/components/sponsors.tsx
@@ -4,14 +4,25 @@ import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
import { repoUrl } from '../utils';
+interface SilverUser {
+ name: string;
+ link: string;
+}
+
let general = [
- 'alexx henry',
- 'Nathan J. Goode',
+ 'Ernest Wiśniewski',
+ 'HN',
+ 'Forrest Weghorst',
'Andre Vallestero',
'NotTooHighToHack',
];
let highlighted = ['Oskenso Kashi', 'Alex Benishek'];
-// let silver = [];
+let silver: Array<SilverUser> = [
+ {
+ name: 'Redjoker',
+ link: 'https://iww.org',
+ },
+];
// let gold = [];
// let latinum = [];
@@ -70,6 +81,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 => (