From a6ec9dc6667cac4acc76a13499994e5bcfdadb82 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 1 Jul 2020 22:50:55 -0400 Subject: [PATCH] Adding to sponsors list. --- ui/src/components/sponsors.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx index 06e135248..dae3f7693 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', @@ -21,6 +22,9 @@ let general = [ ]; let highlighted = ['Oskenso Kashi', 'Alex Benishek']; let silver: Array = [ + { + name: 'DiscountFuneral', + }, { name: 'Redjoker', link: 'https://iww.org', @@ -89,9 +93,13 @@ export class Sponsors extends Component { {silver.map(s => (
- - 💎 {s.name} - + {s.link ? ( + + 💎 {s.name} + + ) : ( +
💎 {s.name}
+ )}
))}