import { Component } from 'inferno'; let general = [ "Nathan J. Goode", ]; // let highlighted = []; // let silver = []; // let gold = []; // let latinum = []; export class Sponsors extends Component { constructor(props: any, context: any) { super(props, context); } componentDidMount() { document.title = "Sponsors - Lemmy"; } render() { return (
{this.topMessage()}
{this.sponsors()}
{this.bitcoin()}
) } topMessage() { return (
Sponsors of Lemmy

Lemmy is free, open-source software, meaning no advertising, monetizing, or venture capital, ever. Your donations directly support full-time development of the project. Thank you to the following people:

Support on Patreon
) } sponsors() { return (
Sponsors

General Sponsors are those that pledged $10 to $39 to Lemmy.

{general.map(s =>
{s}
)}
) } bitcoin() { return (
Crypto
Bitcoin bc1queu73nwuheqtsp65nyh5hf4jr533r8rr5nsj75
Ethereum 0x400c96c96acbC6E7B3B43B1dc1BB446540a88A01
) } }