Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions components/UseDeCleanupToday/UseDeCleanupToday.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,20 @@ const UseDeCleanupToday = () => {
imageUrl: "/token-icon.png",
},
{
title: "Full dApp on Celo (coming soon)",
title: "Full dApp on Celo",
subtitle: "All DeCleanup Rewards features, plus governance.",
bullets: [
"Full dashboard, leaderboard, streaks",
"Recycables rewards promo, supported by DeTrash Global and Recy.App",
"Impact Products and $cDCU rewards, staking",
"Impact Products and $cDCU rewards",
"COMING_SOON_HEADING",
"Staking",
"Governance with $cDCU on Gardens.fund",
"Hypercerts: 1 cleanup hypercert after every 10 verified cleanups",
],
buttonLabel: "DeCleanup on Celo – coming soon",
buttonHref: "#",
buttonDisabled: true,
buttonLabel: "MVP on Celo Sepolia",
buttonHref: "https://dapp.decleanup.net",
buttonDisabled: false,
note: "$cDCU starts as a reputation + governance token for early cleaners.",
},
];
Expand Down Expand Up @@ -288,6 +290,16 @@ const UseDeCleanupToday = () => {
</li>
);
}
// Special handling for "Coming soon" heading
if (bullet === "COMING_SOON_HEADING") {
return (
<li key={idx} className="mt-3 mb-2">
<span className="text-xs sm:text-sm text-gray-500 italic font-medium">
Coming soon:
</span>
</li>
);
}
return (
<li key={idx} className="flex items-start">
<span className="mr-2 text-[#58B12F] font-bold">•</span>
Expand Down