Skip to content

Commit 9d59e81

Browse files
committed
Tweaking the sponsorship page content and buttons.
1 parent 48f1c0b commit 9d59e81

2 files changed

Lines changed: 23 additions & 19 deletions

File tree

docs/sponsors/index.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
hide:
33
- toc
44
---
5-
# Contribute
5+
# Sponsors
66

77
<div class="wdc-sponsors-page" markdown>
8-
<p class="lead">Like the Weekly Dev Chat and want to help?</p>
8+
<p class="lead">The Weekly Dev Chat is powered by community members like you!</p>
99
<section class="support">
1010
<div class="support-card">
1111
<h3>Show Up</h3>
1212
<p>Attending events is the best way to support the Weekly Dev Chat. Bring your curiousity and be willing to share your knowledge and learn from others.</p>
1313
</div>
1414
<div class="support-card">
1515
<h3>Spread the Word</h3>
16-
<p>Invite people who follow our values to our events. Everyone and anyone is welcome kind, supportive, and respectful of others.</p>
16+
<p>Invite others who follow our values to an event. Everyone and anyone is welcome kind, supportive, and respectful of others.</p>
1717
</div>
1818
<div class="support-card">
1919
<h3>Sponsor</h3>
@@ -22,21 +22,19 @@ hide:
2222
</section>
2323

2424
<section class="become-sponsor">
25+
<div class="eyebrow"><span class="dot"></span> Want on this page?</div>
2526
<div class="become-inner">
2627
<div>
27-
<div class="eyebrow"><span class="dot"></span> Want on this page?</div>
28-
<h3>Contribute to Weekly Dev Chat</h3>
29-
<p>Any amount helps cover streaming, hosting, IRL events, and </p>
28+
<h3>Thank you to our Current and Past Sponsors!</h3>
29+
<p>Email us if you have any questions or would like to make non-financial contributions.</p>
3030
</div>
3131
<div class="become-ctas">
32-
<a class="btn primary" href="https://github.com/sponsors/saturdaymp" target="_blank" rel="noopener">Sponsor on GitHub</a>
33-
<a class="btn ghost" href="mailto:chris.cumming@saturdaymp.com">Email Chris</a>
32+
<a class="btn primary" href="https://buy.stripe.com/dRmaEY4HJ2xUgcG8PdfIs01">Sponsor</a>
33+
<a class="btn primary" href="mailto:chris@weeklydevchat.com">Email</a>
3434
</div>
3535
</div>
3636
</section>
3737

38-
Thanks to our current and past supporters!
39-
4038
{% for year in sponsors.years.keys() | sort(reverse=true) %}
4139
{% set ids = (sponsors.years[year].corporate or []) + (sponsors.years[year].individual or []) %}
4240
<section class="year-group" data-year="{{ year }}">
@@ -84,3 +82,7 @@ hide:
8482
{% endfor %}
8583

8684
</div>
85+
86+
<script async
87+
src="https://js.stripe.com/v3/buy-button.js">
88+
</script>

docs/stylesheets/sponsors.css

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
grid-template-columns: repeat(3, 1fr);
2828
gap: 16px;
2929
padding: 20px 0;
30-
margin: 16px 0 40px;
30+
margin: 16px 0 20px;
3131
border-bottom: 1px solid var(--line);
3232
}
3333
.wdc-sponsors-page .support-card {
@@ -219,7 +219,7 @@
219219

220220
/* Become a sponsor CTA */
221221
.wdc-sponsors-page .become-sponsor {
222-
margin: 40px 0;
222+
margin: 20px 0;
223223
padding: 40px;
224224
border-radius: var(--radius);
225225
background: linear-gradient(135deg, var(--teal-dark), var(--teal));
@@ -258,6 +258,7 @@
258258
height: 7px;
259259
border-radius: 50%;
260260
background: var(--blue);
261+
border: 1px solid #fff;
261262
box-shadow: 0 0 0 3px rgba(68, 138, 255, 0.3);
262263
}
263264
.wdc-sponsors-page .become-sponsor h3 {
@@ -282,18 +283,19 @@
282283
display: inline-flex;
283284
align-items: center;
284285
justify-content: center;
285-
padding: 12px 20px;
286-
border-radius: 10px;
286+
padding: 12px 48px;
287+
border-radius: 12px;
288+
border: 2px solid rgba(255, 255, 255, 0.9);
287289
font-weight: 500;
288-
font-size: 14px;
290+
font-size: 17px;
289291
text-decoration: none;
290292
white-space: nowrap;
291-
transition: background 0.15s;
293+
transition: background 0.15s, border-color 0.15s;
292294
}
293295
.wdc-sponsors-page .btn.primary { background: var(--blue); color: #fff; }
294-
.wdc-sponsors-page .btn.primary:hover { background: #2979ff; }
295-
.wdc-sponsors-page .btn.ghost { background: rgba(255, 255, 255, 0.15); color: #fff; }
296-
.wdc-sponsors-page .btn.ghost:hover { background: rgba(255, 255, 255, 0.25); }
296+
.wdc-sponsors-page .btn.primary:hover { background: #2979ff; border-color: #fff; }
297+
.wdc-sponsors-page .btn.ghost { background: rgba(255, 255, 255, 0.25); color: #fff; }
298+
.wdc-sponsors-page .btn.ghost:hover { background: rgba(255, 255, 255, 0.35); border-color: #fff; }
297299

298300
@media (max-width: 900px) {
299301
.wdc-sponsors-page .support { grid-template-columns: 1fr; }

0 commit comments

Comments
 (0)