From 37b60f72a7ad7d99731f648dea02dbc6fa5cfec0 Mon Sep 17 00:00:00 2001 From: Factorio Blueprints Date: Sat, 23 Nov 2024 11:25:36 -0500 Subject: [PATCH] Update Patreon contributors. --- src/components/Contributors.js | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/components/Contributors.js b/src/components/Contributors.js index b030b62e..85ddacc3 100644 --- a/src/components/Contributors.js +++ b/src/components/Contributors.js @@ -5,7 +5,23 @@ import Alert from 'react-bootstrap/Alert'; import React from 'react'; -const contributors = ['Howard F.', 'Tomáš Hubka', 'wisefish', 'Clive Blackledge', 'ensoniq2k', 'faunris', 'Riley', 'Thomas', 'Roger Booth', 'MercenaryIII', 'Earthwalker'] +const contributors = [ + 'Earthwalker', + 'wisefish', + // J***** ******* + 'Tomáš Hubka', + 'Clive Blackledge', + 'Howard F.', + 'faunris', + // P**** + 'ensoniq2k', + 'MercenaryIII', // C**** ***** + // D***** + 'Joel Beland', + 'Riley', + 'Roger Booth', + 'Thomas', +] function Contributors() { @@ -14,16 +30,9 @@ function Contributors()

{'Thank you to our contributors!'}

- { - contributors.map(contributor => ( -

- • {contributor} -

- )) - }

- {'Their contributions will go toward hosting costs, and to reducing and removing ads.'} + {'Their contributions go toward the significant hosting costs, and help keep this site running.'}

patreon.com/FactorioBlueprints

+ { + contributors.map(contributor => ( +

+ • {contributor} +

+ )) + } ); }