Skip to content

Commit 46f7129

Browse files
Merge pull request #49 from LuminaEnvision/main
Update Celo dApp card: change button label and restructure bullets wi…
2 parents df2e24f + f6de517 commit 46f7129

1 file changed

Lines changed: 17 additions & 5 deletions

File tree

components/UseDeCleanupToday/UseDeCleanupToday.tsx

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,20 @@ const UseDeCleanupToday = () => {
4848
imageUrl: "/token-icon.png",
4949
},
5050
{
51-
title: "Full dApp on Celo (coming soon)",
51+
title: "Full dApp on Celo",
5252
subtitle: "All DeCleanup Rewards features, plus governance.",
5353
bullets: [
5454
"Full dashboard, leaderboard, streaks",
5555
"Recycables rewards promo, supported by DeTrash Global and Recy.App",
56-
"Impact Products and $cDCU rewards, staking",
56+
"Impact Products and $cDCU rewards",
57+
"COMING_SOON_HEADING",
58+
"Staking",
5759
"Governance with $cDCU on Gardens.fund",
5860
"Hypercerts: 1 cleanup hypercert after every 10 verified cleanups",
5961
],
60-
buttonLabel: "DeCleanup on Celo – coming soon",
61-
buttonHref: "#",
62-
buttonDisabled: true,
62+
buttonLabel: "MVP on Celo Sepolia",
63+
buttonHref: "https://dapp.decleanup.net",
64+
buttonDisabled: false,
6365
note: "$cDCU starts as a reputation + governance token for early cleaners.",
6466
},
6567
];
@@ -288,6 +290,16 @@ const UseDeCleanupToday = () => {
288290
</li>
289291
);
290292
}
293+
// Special handling for "Coming soon" heading
294+
if (bullet === "COMING_SOON_HEADING") {
295+
return (
296+
<li key={idx} className="mt-3 mb-2">
297+
<span className="text-xs sm:text-sm text-gray-500 italic font-medium">
298+
Coming soon:
299+
</span>
300+
</li>
301+
);
302+
}
291303
return (
292304
<li key={idx} className="flex items-start">
293305
<span className="mr-2 text-[#58B12F] font-bold"></span>

0 commit comments

Comments
 (0)