summaryrefslogtreecommitdiffstats
path: root/ui/src/components
diff options
context:
space:
mode:
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>
))}