Skip to content

Commit

Permalink
Merge pull request #1085 from bijomathewjose/old-dev
Browse files Browse the repository at this point in the history
Donation Button Integration
  • Loading branch information
Jenin82 authored Mar 3, 2024
2 parents 2d4a4e5 + 7378e8b commit 63cf54c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Pages/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ const MuLiveCounter = () => {
};

const Home = () => {
const donationLink = process.env.REACT_APP_DONATION_LINK

return (
<>
<Navbar />
Expand All @@ -121,9 +123,9 @@ const Home = () => {
<a
target="_blank"
rel="noopener noreferrer"
href="https://app.mulearn.org/register"
href={donationLink}
>
<button className={styles.primary}>Join Us</button>
<button className={styles.primary}>Make a Donation ❤️</button>
</a>
<a target="_blank" rel="noopener noreferrer" href="/mulearn.apk">
<button className={styles.secondary}>Download APK</button>
Expand Down

0 comments on commit 63cf54c

Please sign in to comment.