summaryrefslogtreecommitdiffstats
path: root/ui/src/components/sponsors.tsx
blob: 3fd55c2fba2b2d09226fbe0f7e6027426071bcf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { Component } from 'inferno';
import { WebSocketService } from '../services';
import { i18n } from '../i18next';
import { T } from 'inferno-i18next';

let general = 
  [
  "Nathan J. Goode",
];
// let highlighted = [];
// let silver = [];
// let gold = [];
// let latinum = [];

export class Sponsors extends Component<any, any> {

  constructor(props: any, context: any) {
    super(props, context);

  }

  componentDidMount() {
    document.title = `${i18n.t('sponsors')} - ${WebSocketService.Instance.site.name}`;
  }

  render() {
    return (
      <div class="container text-center">
        {this.topMessage()}
        <hr />
        {this.sponsors()}
        <hr />
        {this.bitcoin()}
      </div>
    )
  }

  topMessage() {
    return (
      <div>
        <h5><T i18nKey="sponsors_of_lemmy">#</T></h5>
        <p>
          <T i18nKey="sponsor_message">#<a href="https://github.com/dessalines/lemmy">#</a></T>
        </p>
        <a class="btn btn-secondary" href="https://www.patreon.com/dessalines"><T i18nKey="support_on_patreon">#</T></a>
      </div>
    )
  }
  sponsors() {
    return (
      <div class="container">
        <h5><T i18nKey="sponsors">#</T></h5>
        <p><T i18nKey="general_sponsors">#</T></p>
        <div class="row card-columns">
          {general.map(s => 
            <div class="card col-12 col-md-2">
              <div>{s}</div>
            </div>
          )}
        </div>
      </div>
    )
  }

  bitcoin() {
    return (
      <div>
        <h5><T i18nKey="crypto">#</T></h5>
      <div class="table-responsive">
        <table class="table table-hover text-center">
          <tbody>
          <tr>
            <td><T i18nKey="bitcoin">#</T></td>
            <td><code>1Hefs7miXS5ff5Ck5xvmjKjXf5242KzRtK</code></td>
          </tr>
          <tr>
            <td><T i18nKey="ethereum">#</T></td>
            <td><code>0x400c96c96acbC6E7B3B43B1dc1BB446540a88A01</code></td>
          </tr>
          </tbody>
        </table>
      </div>
    </div>
    )
  }
}