-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable monthly recurring donations via Stripe (#414)
* Set up wording for recurring donations * Reword * Add button for recurring donations * Improve button styling * Better wording * Add text; remove links * Simplify Don't make me think! * Improve button appearance on hover * Copy edits Co-authored-by: ARVIN <[email protected]> * Update stripe link to recurring * Don't hide button border on hover * Copyedit Co-authored-by: ARVIN <[email protected]> --------- Co-authored-by: ARVIN <[email protected]>
- Loading branch information
Showing
3 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import CustomLink from './Link' | ||
|
||
export default function DonateRecurringButton() { | ||
return ( | ||
<div className="mb-10 mt-12 flex justify-center"> | ||
<CustomLink | ||
href="https://checkout.opensats.org/b/4gwg1bbvW6Li0ww7st" | ||
className="my-15 rounded border border-orange-500 bg-transparent px-8 py-4 text-lg font-semibold no-underline hover:bg-orange-100" | ||
> | ||
Give Monthly 🧡 | ||
</CustomLink> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters