summaryrefslogtreecommitdiffstats
path: root/ui/src/components
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-07-01 22:50:55 -0400
committerDessalines <tyhou13@gmx.com>2020-07-01 22:50:55 -0400
commita6ec9dc6667cac4acc76a13499994e5bcfdadb82 (patch)
tree540fb5727d7f3e343dd8768c62c72e6c056294fb /ui/src/components
parent9e1e12f6ce8a77597d0bb1fda1466f62766373bb (diff)
Adding to sponsors list.
Diffstat (limited to 'ui/src/components')
-rw-r--r--ui/src/components/sponsors.tsx16
1 files changed, 12 insertions, 4 deletions
diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx
index 06e13524..dae3f769 100644
--- a/ui/src/components/sponsors.tsx
+++ b/ui/src/components/sponsors.tsx
@@ -6,10 +6,11 @@ import { repoUrl } from '../utils';
interface SilverUser {
name: string;
- link: string;
+ link?: string;
}
let general = [
+ 'twilight loki',
'Andrew Plaza',
'Jonathan Cremin',
'Arthur Nieuwland',
@@ -22,6 +23,9 @@ let general = [
let highlighted = ['Oskenso Kashi', 'Alex Benishek'];
let silver: Array<SilverUser> = [
{
+ name: 'DiscountFuneral',
+ },
+ {
name: 'Redjoker',
link: 'https://iww.org',
},
@@ -89,9 +93,13 @@ export class Sponsors extends Component<any, any> {
{silver.map(s => (
<div class="card col-12 col-md-2">
<div>
- <a href={s.link} target="_blank" rel="noopener">
- 💎 {s.name}
- </a>
+ {s.link ? (
+ <a href={s.link} target="_blank" rel="noopener">
+ 💎 {s.name}
+ </a>
+ ) : (
+ <div>💎 {s.name}</div>
+ )}
</div>
</div>
))}