diff --git a/client/src/components/Supporters.js b/client/src/components/Supporters.js index 192717add5..7ab7b0b662 100644 --- a/client/src/components/Supporters.js +++ b/client/src/components/Supporters.js @@ -17,22 +17,33 @@ const supportersLocale = supporterGoal.toLocaleString(); function Supporters({ isDonating, activeDonations }) { const donationsLocale = activeDonations.toLocaleString(); + const isGoalReached = activeDonations >= supporterGoal; return (

Support an open future.

- -
- -
- - {donationsLocale} supporters out of {supportersLocale} supporter - goal - + {isGoalReached ? ( + + +

+ 🎉 {donationsLocale} supporters help keep freeCodeCamp.org free to + use +

+
+ ) : ( + +
+ +
+ + {donationsLocale} supporters out of {supportersLocale} supporter + goal + +
-
- + + )}