Skip to content

Commit a5f8055

Browse files
Update patrons list
1 parent 9297271 commit a5f8055

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

src/components/Sponsors.js

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,19 @@ const ProjectsList = [
3030
}
3131
];
3232

33-
const DonatorsList = ['Just Epic',
33+
const currentDonators = ['Just Epic',
3434
'Brian McGonagill',
3535
'Brian',
36-
'Mortarwork Studios',
37-
'Louis Couture',
3836
'Satya Sinha',
3937
'Zizaco Zizuini',
4038
'Nchinda'];
4139

40+
const pastDonators = [
41+
'Jeremiah',
42+
'Louis Couture',
43+
'BenStigsen',
44+
'Jarred'];
45+
4246
function Sponsor({sponsor}) {
4347
return (
4448
<div className={clsx('col col--4', styles.sponsor, 'padding-vert--md')}>
@@ -75,9 +79,18 @@ export default function Sponsors() {
7579
))}
7680
</div>
7781
<h1 className="margin-top--lg">Monthly Donators</h1>
82+
<h2>Current</h2>
83+
<div className="row">
84+
<ul>
85+
{currentDonators.map((props, idx) => (
86+
<Donator key={idx} name={props} />
87+
))}
88+
</ul>
89+
</div>
90+
<h2>Past</h2>
7891
<div className="row">
7992
<ul>
80-
{DonatorsList.map((props, idx) => (
93+
{pastDonators.map((props, idx) => (
8194
<Donator key={idx} name={props} />
8295
))}
8396
</ul>

0 commit comments

Comments
 (0)