summaryrefslogtreecommitdiffstats
path: root/ui/src/components/sponsors.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-15 10:28:27 -0500
committerDessalines <tyhou13@gmx.com>2020-01-15 10:28:27 -0500
commit0e34e9ea7e98786a91b34113c1bfdeb8fcb1f069 (patch)
tree105994650d584e3b196d3eae3580480933ab174a /ui/src/components/sponsors.tsx
parent4c97e03e826395fe0d4786ccb4ffc203caad6007 (diff)
Updating the sponsor list.
Diffstat (limited to 'ui/src/components/sponsors.tsx')
-rw-r--r--ui/src/components/sponsors.tsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx
index 077aa7d3..9883e079 100644
--- a/ui/src/components/sponsors.tsx
+++ b/ui/src/components/sponsors.tsx
@@ -3,8 +3,8 @@ import { WebSocketService } from '../services';
import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
-let general = ['riccardo', 'NotTooHighToHack'];
-// let highlighted = [];
+let general = ['Andre Vallestero', 'riccardo', 'NotTooHighToHack'];
+let highlighted = ['Alex Benishek'];
// let silver = [];
// let gold = [];
// let latinum = [];
@@ -59,6 +59,11 @@ export class Sponsors extends Component<any, any> {
<T i18nKey="general_sponsors">#</T>
</p>
<div class="row card-columns">
+ {highlighted.map(s => (
+ <div class="card bg-primary col-12 col-md-2 font-weight-bold">
+ <div>{s}</div>
+ </div>
+ ))}
{general.map(s => (
<div class="card col-12 col-md-2">
<div>{s}</div>