mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
Add NLNet as a sponsor. Fixes #59
This commit is contained in:
parent
1c95e4327d
commit
9fa6954a04
2 changed files with 32 additions and 2 deletions
|
@ -1 +1 @@
|
|||
Subproject commit eb718ef3be97ccb4d38988e2ed28f294e73451c0
|
||||
Subproject commit 3aadc092ceba43fee043391900b1109b7753f70b
|
|
@ -8,6 +8,8 @@ import { languagesAll, countries } from "countries-list";
|
|||
|
||||
const title = i18n.t("support_title");
|
||||
const avatarSize = 40;
|
||||
const bannerWidth = 240;
|
||||
const bannerHeight = 101;
|
||||
|
||||
interface LinkedSponsor {
|
||||
name: string;
|
||||
|
@ -28,6 +30,14 @@ let goldSponsors: GoldSponsor[] = [
|
|||
},
|
||||
];
|
||||
|
||||
let latinumSponsors: GoldSponsor[] = [
|
||||
{
|
||||
name: "NLnet",
|
||||
link: "https://nlnet.nl",
|
||||
avatar: "https://nlnet.nl/image/logo_nlnet.svg",
|
||||
},
|
||||
];
|
||||
|
||||
let silverSponsors: LinkedSponsor[] = [];
|
||||
|
||||
let highlightedSponsors = ["DQW", "John Knapp"];
|
||||
|
@ -99,6 +109,26 @@ export class Support extends Component<any, any> {
|
|||
</div>
|
||||
<div class="text-center">
|
||||
<h2>{i18n.t("sponsors")}</h2>
|
||||
{latinumSponsors.length > 0 && (
|
||||
<div>
|
||||
<p>{i18n.t("gold_pressed_latinum_sponsors_desc")}</p>
|
||||
<div class="row is-horizontal-align">
|
||||
{latinumSponsors.map(s => (
|
||||
<div class="col-6">
|
||||
<a class="button outline" href={s.link}>
|
||||
<img
|
||||
src={s.avatar}
|
||||
width={bannerWidth}
|
||||
height={bannerHeight}
|
||||
/>
|
||||
<div>{s.name}</div>
|
||||
</a>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<br />
|
||||
</div>
|
||||
)}
|
||||
{goldSponsors.length > 0 && (
|
||||
<div>
|
||||
<p>{i18n.t("gold_sponsors_desc")}</p>
|
||||
|
@ -107,7 +137,7 @@ export class Support extends Component<any, any> {
|
|||
<div class="col">
|
||||
<a class="button outline gold" href={s.link}>
|
||||
<img
|
||||
class="mr-2 is-rounded"
|
||||
class="is-rounded"
|
||||
src={s.avatar}
|
||||
width={avatarSize}
|
||||
height={avatarSize}
|
||||
|
|
Loading…
Reference in a new issue