From 38779f87d43db2246c73be6f38ec80e53695e821 Mon Sep 17 00:00:00 2001
From: Anastasia <142572092+LuminaEnvision@users.noreply.github.com>
Date: Sat, 7 Feb 2026 17:25:38 +0700
Subject: [PATCH] feat: Restructure landing page content, add
Funders/Coordinate pages, standardize headers
---
app/coordinate/page.tsx | 278 ++++++
app/docs/page.tsx | 374 ++------
app/funders/page.tsx | 550 +++++++++++
app/get-started/page.tsx | 15 +-
app/litepaper/page.tsx | 2 +-
app/tokenomics/page.tsx | 1069 +++++++++-------------
app/userguide/page.tsx | 2 +-
components/WhoIsThisFor/WhoIsThisFor.tsx | 6 +-
8 files changed, 1315 insertions(+), 981 deletions(-)
create mode 100644 app/coordinate/page.tsx
create mode 100644 app/funders/page.tsx
diff --git a/app/coordinate/page.tsx b/app/coordinate/page.tsx
new file mode 100644
index 0000000..8a6b4c6
--- /dev/null
+++ b/app/coordinate/page.tsx
@@ -0,0 +1,278 @@
+
+import type { Metadata } from "next";
+import Link from "next/link";
+import React from "react";
+
+export const metadata: Metadata = {
+ title: "Coordinate Impact | DeCleanup Rewards",
+ description:
+ "Open infrastructure for transparent, scalable environmental coordination.",
+};
+
+export default function CoordinatePage() {
+ return (
+
+
+ {/* Navigation */}
+
+
+
+ Back to Home
+
+
+
+ {/* Header */}
+
+
+ Coordinate & Scale Impact
+
+
+ For those who build and coordinate impact
+
+
+ Open infrastructure for transparent, scalable environmental coordination.
+
+
+
+ {/* The Problem */}
+
+
+ The Problem
+
+
+ Impact coordinators struggle with:
+
+
+ {[
+ { icon: "π§©", title: "Fragmented data" },
+ { icon: "π", title: "Manual reporting" },
+ { icon: "π", title: "Trust bottlenecks" },
+ {
+ icon: "ποΈ",
+ title: "No shared infrastructure",
+ subtitle: "for verification",
+ },
+ {
+ icon: "βοΈ",
+ title: "Hard-to-govern",
+ subtitle: "funding decisions",
+ },
+ ].map((item, index) => (
+
+
{item.icon}
+
+ {item.title}
+ {item.subtitle && (
+
+ {item.subtitle}
+
+ )}
+
+
+ ))}
+
+
+
+ {/* What DeCleanup Provides */}
+
+
+ What DeCleanup Provides
+
+
+
+ DeCleanup is open DMRV infrastructure, not a closed platform. You can:
+
+
+ {[
+ "Use standardized cleanup data",
+ "Participate in governance",
+ "Help define verification rules",
+ "Coordinate funding transparently",
+ ].map((item, index) => (
+
+ ))}
+
+
+
+
+ {/* DMRV as Infrastructure */}
+
+
+
+ DMRV as Infrastructure
+
+
+ We treat DMRV as a public good layer:
+
+
+ {[
+ { icon: "π", title: "Cleanup records are immutable" },
+ { icon: "π", title: "Data structures are open and interoperable" },
+ { icon: "π", title: "No dependency on proprietary standards" },
+ ].map((item, index) => (
+
+ {item.icon}
+ {item.title}
+
+ ))}
+
+
+
+
+
+
Compatible with
+
+ - SDG reporting
+ - Regen ecosystems
+ - Future certification layers
+
+
+
+
This aligns with
+
+ - Regen community tooling
+ - Open impact accounting systems
+ - Governance & coordination
+
+
+
+
+
+ {/* Governance Tools Live on Celo */}
+
+
+ Governance Tools Live on Celo
+
+
+ {[
+ {
+ icon: "π°",
+ title: "$cDCU Token",
+ desc: "Used for proposals and voting",
+ },
+ {
+ icon: "π±",
+ title: "Gardens.fund",
+ desc: "Coordination platform",
+ },
+ {
+ icon: "π³οΈ",
+ title: "Community Decides",
+ desc: "Verification rules, funding priorities, new pools",
+ },
+ ].map((item, index) => (
+
+
+
{item.icon}
+
{item.title}
+
{item.desc}
+
+ ))}
+
+
+
+ {/* Example Funding Pools */}
+
+
+ Example Funding Pools
+
+
+ {/* First Pool - Special Styling */}
+
+
+
First Pool
+
Sponsored by Ethereum for the World
+
+
+ Active
+
+
+
+ {[
+ "Equipment Pool",
+ "Local Organizer Support Pool",
+ "Logistics & Transport Pool",
+ "Data & Research Pool",
+ "Experimental / Pilot Pool",
+ ].map((pool, index) => (
+
+ ))}
+
+
+
+ {/* The Outcome */}
+
+
+ The Outcome
+
+
+ {[
+ "Coordinators spend less time proving impact",
+ "Communities self-govern funding",
+ "Impact data becomes reusable infrastructure",
+ "Cleanups scale without centralized control"
+ ].map((outcome, index) => (
+
+
+ {index + 1}
+
+
+ {outcome}
+
+
+ ))}
+
+
+
+
+
+ );
+}
diff --git a/app/docs/page.tsx b/app/docs/page.tsx
index 1397501..4a45e70 100644
--- a/app/docs/page.tsx
+++ b/app/docs/page.tsx
@@ -1,3 +1,4 @@
+
"use client";
import Link from "next/link";
@@ -9,7 +10,7 @@ export default function DocsPage() {
{/* Back Button */}
- {/* For those who build and coordinate impact - intro before technical docs */}
-
- {/* Header */}
-
-
- For those who build and coordinate impact
-
-
- Open infrastructure for transparent, scalable environmental coordination
+ {/* Developer Sections */}
+
+ {/* Contracts */}
+
+
π
+
Smart Contracts
+
+ Explore the core contracts powering DeCleanup, cleanups verification, and token logic.
+
+ View on GitHub β
+
- {/* The Problem - Visual Cards */}
-
-
-
-
Impact coordinators struggle with:
-
-
- {[
- { icon: "π§©", text: "Fragmented data" },
- { icon: "π", text: "Manual reporting" },
- { icon: "π", text: "Trust bottlenecks" },
- { icon: "ποΈ", text: "No shared infrastructure for verification" },
- { icon: "βοΈ", text: "Hard-to-govern funding decisions" }
- ].map((problem, idx) => (
-
-
-
{problem.icon}
-
{problem.text}
-
-
- ))}
-
-
-
- {/* Visual Arrow Transition */}
-
-
- {/* What DeCleanup Provides */}
-
-
-
-
What DeCleanup Provides
-
-
-
- DeCleanup is open DMRV infrastructure, not a closed platform. You can:
+ {/* Subgraph */}
+
+
πΈοΈ
+
Indexing & Subgraphs
+
+ Query DeCleanup data for integrations, analytics and governance apps.
-
-
- {[
- {
- icon:
,
- text: "Use standardized cleanup data"
- },
- {
- icon:
,
- text: "Participate in governance"
- },
- {
- icon:
,
- text: "Help define verification rules"
- },
- {
- icon:
,
- text: "Coordinate funding transparently"
- }
- ].map((item, idx) => (
-
-
- {item.icon}
-
-
{item.text}
-
- ))}
+
+ Coming soon
- {/* DMRV as Infrastructure */}
-
-
-
-
DMRV as Infrastructure
-
-
-
We treat DMRV as a public good layer:
-
-
- {[
- { icon: "π", text: "Cleanup records are immutable", color: "from-blue-500/10 to-blue-600/5" },
- { icon: "π", text: "Data structures are open and interoperable", color: "from-purple-500/10 to-purple-600/5" },
- { icon: "π", text: "No dependency on proprietary standards", color: "from-green-500/10 to-green-600/5" }
- ].map((item, idx) => (
-
-
{item.icon}
-
{item.text}
-
- ))}
-
-
- {/* Compatible With */}
-
-
Compatible with:
-
- {["SDG reporting", "Regen ecosystems", "Future certification layers"].map((item, idx) => (
-
- {item}
-
- ))}
-
-
-
- {/* Aligns With */}
-
-
This aligns with:
-
- {["Regen community tooling", "Open impact accounting systems", "Governance & coordination"].map((item, idx) => (
-
- {item}
-
- ))}
-
-
+ {/* Frontend */}
+
+
π₯οΈ
+
Frontend & Mini Apps
+
+ Contribute to the user interfaces, PWA, and Farcaster frames.
+
+
+ Explore Repos β
+
- {/* Governance Tools */}
-
-
-
-
Governance Tools Live on Celo
-
-
-
- {[
- {
- icon: "π°",
- title: "$cDCU Token",
- text: "Used for proposals and voting"
- },
- {
- icon: "π±",
- title: "Gardens.fund",
- text: "Coordination platform",
- link: "https://gardens.fund"
- },
- {
- icon: "π³οΈ",
- title: "Community Decides",
- text: "Verification rules, funding priorities, new pools"
- }
- ].map((item, idx) => (
-
-
{item.icon}
-
- {item.link ? (
-
- {item.title}
-
- ) : (
- item.title
- )}
-
-
{item.text}
-
- ))}
-
-
- {/* Funding Pools */}
-
-
-
- Example Funding Pools
-
-
- {[
- { name: "Equipment Pool", badge: "First Pool", sponsor: "Ethereum for the World" },
- { name: "Local Organizer Support Pool" },
- { name: "Logistics & Transport Pool" },
- { name: "Data & Research Pool" },
- { name: "Experimental / Pilot Pool" }
- ].map((pool, idx) => (
-
-
-
{pool.name}
- {pool.badge && (
-
- {pool.badge}
-
- )}
-
- {pool.sponsor && (
-
Sponsored by {pool.sponsor}
- )}
-
- ))}
-
-
+ {/* Verification AI */}
+
+
π€
+
AI Verification
+
+ Learn about the computer vision models used for verifying cleanup impact.
+
+
+ Docs coming soon
+
- {/* Outcome */}
-
-
-
-
- {[
- {
- icon:
,
- text: "Coordinators spend less time proving impact",
- color: "text-blue-400"
- },
- {
- icon:
,
- text: "Communities self-govern funding",
- color: "text-purple-400"
- },
- {
- icon:
,
- text: "Impact data becomes reusable infrastructure",
- color: "text-green-400"
- },
- {
- icon:
,
- text: "Cleanups scale without centralized control",
- color: "text-yellow-400"
- }
- ].map((outcome, idx) => (
-
-
- {outcome.icon}
-
-
{outcome.text}
-
- ))}
-
-
- {/* Tagline */}
-
-
- Coordination layer first.
-
-
+ {/* Governance */}
+
+
βοΈ
+
Governance
+
+ Technical details on how funding pools and voting mechanisms work.
+
+
+ Visit Gardens β
+
+
-
+
+
+ Looking for the impact coordination guide? Click here.
+
+
);
diff --git a/app/funders/page.tsx b/app/funders/page.tsx
new file mode 100644
index 0000000..f128f9d
--- /dev/null
+++ b/app/funders/page.tsx
@@ -0,0 +1,550 @@
+
+import type { Metadata } from "next";
+import Link from "next/link";
+import React from "react";
+
+export const metadata: Metadata = {
+ title: "Fund Verified Impact | DeCleanup Rewards",
+ description:
+ "Verifiable impact infrastructure, not speculation. Fund what you can verify.",
+};
+
+export default function FundersPage() {
+ return (
+
+
+ {/* Back Button */}
+
+
+
+
Back to Home
+
+
+
+ {/* Page Header */}
+
+
+ For those who fund real-world impact
+
+
+ Verifiable impact infrastructure, not speculation
+
+
+ Fund what you can verify.
+
+
+
+ {/* Main Content */}
+
+
+ {/* The Problem - Visual Cards */}
+
+
+
+
Funders want:
+
+
+ {[
+ { icon: "β
", text: "Proof that money led to real action" },
+ { icon: "ποΈ", text: "Transparency without heavy overhead" },
+ { icon: "π", text: "Repeatable, scalable funding models" },
+ { icon: "π", text: "Less trust, more verification" }
+ ].map((problem, idx) => (
+
+
+
{problem.icon}
+
{problem.text}
+
+
+ ))}
+
+
+
+ {/* Visual Arrow Transition */}
+
+
+ {/* What DeCleanup Enables */}
+
+
+
+
What DeCleanup Enables
+
+
+
+ We don't promise financial returns first. We offer verifiable impact infrastructure. Funders can:
+
+
+
+ {[
+ {
+ icon:
,
+ text: "Fund cleanup pools"
+ },
+ {
+ icon:
,
+ text: "See immutable proof of execution"
+ },
+ {
+ icon:
,
+ text: "Support open verification infrastructure"
+ },
+ {
+ icon:
,
+ text: "Hold tokens connected to real-world activity"
+ }
+ ].map((item, idx) => (
+
+
+ {item.icon}
+
+
{item.text}
+
+ ))}
+
+
+
+ {/* DMRV from Funder's Perspective */}
+
+
+
+
DMRV from a Funder's Perspective
+
+
+ {/* Flow Diagram */}
+
+
+
+ π°
+ Funds flow
+
+
+
+ π§Ή
+ Cleanups happen
+
+
+
+ π
+ Proof published
+
+
+
Records are tamper-resistant
+
+
+ {/* Data Capabilities */}
+
+
+
Data can be:
+
+ {["Audited", "Aggregated", "Reused across reports and ecosystems"].map((item, idx) => (
+
+ ))}
+
+
+
+
+
This reduces:
+
+ {[
+ { icon: "π«", text: "Greenwashing risk" },
+ { icon: "πΈ", text: "Reporting costs" },
+ { icon: "π€", text: "Trust-based claims" }
+ ].map((item, idx) => (
+
+
{item.icon}
+
{item.text}
+
+ ))}
+
+
+
+
+
+ {/* Outcome */}
+
+
+
+
+ {[
+ {
+ icon:
,
+ text: "Funding tied to verifiable action",
+ color: "text-green-400"
+ },
+ {
+ icon:
,
+ text: "Better accountability",
+ color: "text-blue-400"
+ },
+ {
+ icon:
,
+ text: "Open infrastructure worth supporting",
+ color: "text-purple-400"
+ }
+ ].map((outcome, idx) => (
+
+
+ {outcome.icon}
+
+
{outcome.text}
+
+ ))}
+
+
+ {/* Taglines */}
+
+
+ A base layer for future impact finance
+
+
+ Fund what you can verify.
+
+
+
+
+
+ {/* Expandable: Dive into tokenomics */}
+
+
+ Dive into tokenomics
+
+
+
+ {/* Embedded Tokenomics Page Content */}
+
+ {/* Page Header for Tokenomics Section */}
+
+
+ Tokenomics
+
+
+ The dual-token model powering DeCleanup's global impact ecosystem.
+
+
+
+ {/* SECTION 1 - TWO-TOKEN OVERVIEW */}
+
+
+ {/* Card 1 - $bDCU - Base */}
+
+
+ BASE TOKEN: $bDCU
+
+
+ The "action token." Used on Base for:
+
+
+ -
+ β’
+ cleanup rewards
+
+ -
+ β’
+ streaks
+
+ -
+ β’
+ referrals
+
+ -
+ β’
+ verifier staking
+
+ -
+ β’
+ simple incentives
+
+
+
+ View on Base
+
+
+
+ {/* Card 2 - $cDCU - Celo */}
+
+
+ CELO TOKEN: $cDCU
+
+
+ Reputation, governance & advanced utilities
+
+
+ -
+ β’
+ Earned through verified cleanups in the Celo dApp
+
+ -
+ β’
+ Non-tradable by design (reputation-linked)
+
+ -
+ β’
+ Used for governance via Gardens.fund
+
+ -
+ β’
+ Stake to access Verifier roles
+
+ -
+ β’
+ Required for streaks, dashboard, analytics
+
+ -
+ β’
+ Powers the Celo ReFi + governance layer
+
+
+
+
+
+
+
+ {/* SECTION 2 - TOKEN COMPARISON TABLE */}
+
+
+ Token Comparison
+
+
+
+
+
+ |
+
+ $bDCU (Base)
+ |
+
+ $cDCU (Celo)
+ |
+
+
+
+
+ | Chain |
+ Base |
+ Celo |
+
+
+ | Type |
+ Liquid ERC-20 |
+ Reputation + Governance |
+
+
+ | Transferable |
+ Yes |
+ Non-tradable |
+
+
+ | Primary Use |
+ Fast incentives |
+ Verified impact + governance |
+
+
+ | Earned From |
+ Mini app cleanups |
+ Full dApp cleanups |
+
+
+ | Staking Purpose |
+ Verifier access |
+ Verifier access + governance |
+
+
+ | Governance |
+ No |
+ Yes (Gardens.fund) |
+
+
+ | Hypercerts |
+ No |
+ Yes (every 10 cleanups) |
+
+
+ | Market |
+ Tradable |
+ Non-tradable |
+
+
+ | Total Supply |
+ TBA |
+ 10,000,000 fixed supply |
+
+
+
+
+
+
+ {/* SECTION 4 - TOKEN LIFECYCLE - Simplified */}
+
+
+ Token Lifecycle
+
+
+
+ {/* $bDCU Lifecycle */}
+
+
+ $bDCU Lifecycle
+
+
+ {/* Vertical connector line */}
+
+
+
+
+
+
+
1 - Earn through the Base mini app
+
+
+
+
+
+
+
2 - Stake to become a Verifier
+
+
+
+
+
+
+
3 - Trade freely on Base DEXes
+
+
+
+
+
+
+ {/* $cDCU Lifecycle */}
+
+
+ $cDCU Lifecycle
+
+
+ {/* Vertical connector line */}
+
+
+
+
+
+
+
1 - Earn through verified cleanups
+
+
+
+
+
+
+
2 - Stake for governance and Verifier role
+
+
+
+
+
+
+
3 - Vote on proposals through Gardens.fund
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/app/get-started/page.tsx b/app/get-started/page.tsx
index e02e9b0..8898556 100644
--- a/app/get-started/page.tsx
+++ b/app/get-started/page.tsx
@@ -14,7 +14,7 @@ export default function GetStartedPage() {
diff --git a/app/litepaper/page.tsx b/app/litepaper/page.tsx
index 101bcf4..b8af61a 100644
--- a/app/litepaper/page.tsx
+++ b/app/litepaper/page.tsx
@@ -13,7 +13,7 @@ export default function LitepaperPage() {
{/* Back Button */}
- {/* For those who fund real-world impact - intro before token details */}
-
- {/* Header */}
-
-
- For those who fund real-world impact
-
-
- Verifiable impact infrastructure, not speculation
-
-
-
- {/* The Problem - Visual Cards */}
-
-
-
-
The Problem
+ {/* SECTION 1 - TWO-TOKEN OVERVIEW */}
+
+
+ {/* Card 1 - $bDCU - Base */}
+
+
+ BASE TOKEN: $bDCU
+
+
+ The "action token." Used on Base for:
+
+
+ -
+ β’
+ cleanup rewards
+
+ -
+ β’
+ streaks
+
+ -
+ β’
+ referrals
+
+ -
+ β’
+ verifier staking
+
+ -
+ β’
+ simple incentives
+
+
+
+ View on Base
+
-
Funders want:
-
-
- {[
- { icon: "β
", text: "Proof that money led to real action" },
- { icon: "ποΈ", text: "Transparency without heavy overhead" },
- { icon: "π", text: "Repeatable, scalable funding models" },
- { icon: "π", text: "Less trust, more verification" }
- ].map((problem, idx) => (
-
-
-
{problem.icon}
-
{problem.text}
-
-
- ))}
+ {/* Card 2 - $cDCU - Celo */}
+
+
+ CELO TOKEN: $cDCU
+
+
+ Reputation, governance & advanced utilities
+
+
+ -
+ β’
+ Earned through verified cleanups in the Celo dApp
+
+ -
+ β’
+ Non-tradable by design (reputation-linked)
+
+ -
+ β’
+ Used for governance via Gardens.fund
+
+ -
+ β’
+ Stake to access Verifier roles
+
+ -
+ β’
+ Required for streaks, dashboard, analytics
+
+ -
+ β’
+ Powers the Celo ReFi + governance layer
+
+
+
-
- {/* Visual Arrow Transition */}
-
-
-
-
+
+
+ {/* SECTION 2 - TOKEN COMPARISON TABLE */}
+
+
+ Token Comparison
+
+
+
+
+
+ |
+
+ $bDCU (Base)
+ |
+
+ $cDCU (Celo)
+ |
+
+
+
+
+ | Chain |
+ Base |
+ Celo |
+
+
+ | Type |
+ Liquid ERC-20 |
+ Reputation + Governance |
+
+
+ | Transferable |
+ Yes |
+ Non-tradable |
+
+
+ | Primary Use |
+ Fast incentives |
+ Verified impact + governance |
+
+
+ | Earned From |
+ Mini app cleanups |
+ Full dApp cleanups |
+
+
+ | Staking Purpose |
+ Verifier access |
+ Verifier access + governance |
+
+
+ | Governance |
+ No |
+ Yes (Gardens.fund) |
+
+
+ | Hypercerts |
+ No |
+ Yes (every 10 cleanups) |
+
+
+ | Market |
+ Tradable |
+ Non-tradable |
+
+
+ | Total Supply |
+ TBA |
+ 10,000,000 fixed supply |
+
+
+
-
- {/* What DeCleanup Enables */}
-
-
-
-
What DeCleanup Enables
+
+
+ {/* SECTION 3 - IMPACT SYSTEM CARDS */}
+
+
+ Impact System
+
+
+ {/* Card A - Impact Products */}
+
+
+ Impact Products
+
+
+ -
+ β’
+ Dynamic NFTs
+
+ -
+ β’
+ Level up with each cleanup
+
+ -
+ β’
+ Track long-term environmental history
+
+
-
- We don't promise financial returns first. We offer verifiable impact infrastructure. Funders can:
-
-
-
- {[
- {
- icon:
,
- text: "Fund cleanup pools"
- },
- {
- icon:
,
- text: "See immutable proof of execution"
- },
- {
- icon:
,
- text: "Support open verification infrastructure"
- },
- {
- icon:
,
- text: "Hold tokens connected to real-world activity"
- }
- ].map((item, idx) => (
-
-
- {item.icon}
-
-
{item.text}
-
- ))}
+ {/* Card B - Verifier System */}
+
+
+ Verifier System
+
+
+ -
+ β’
+ Stake $bDCU or $cDCU to join
+
+ -
+ β’
+ Review Proof-of-Impact submissions
+
+ -
+ β’
+ Earn verifier rewards
+
+ -
+ β’
+ Slashing protects integrity
+
+
-
- {/* DMRV from Funder's Perspective */}
-
-
-
-
DMRV from a Funder's Perspective
+ {/* Card C - Hypercerts */}
+
+
+ Hypercerts
+
+
+ -
+ β’
+ Minted after every 10 verified cleanups
+
+ -
+ β’
+ Permanent ERC-1155 impact certificate
+
+ -
+ β’
+ Used for grants, ESG reporting, identity
+
+
+
+
+
+ {/* SECTION 4 - TOKEN LIFECYCLE */}
+
+
+ Token Lifecycle
+
+
+
+ {/* $bDCU Lifecycle */}
+
+
+ $bDCU Lifecycle
+
+
+ {/* Vertical connector line */}
+
+
+
+
+
+
+
1 - Earn through the Base mini app
+
+
- {/* Flow Diagram */}
-
-
-
- π°
- Funds flow
-
-
-
-
-
- π§Ή
- Cleanups happen
-
-
-
-
-
- π
- Proof published
-
-
-
Records are tamper-resistant
-
+
+
+
+
2 - Stake to become a Verifier
+
+
- {/* Data Capabilities */}
-
-
-
Data can be:
-
- {["Audited", "Aggregated", "Reused across reports and ecosystems"].map((item, idx) => (
-
-
-
-
-
{item}
+
+
+
+
3 - Trade freely on Base DEXes
- ))}
-
-
+
-
-
This reduces:
-
- {[
- { icon: "π«", text: "Greenwashing risk" },
- { icon: "πΈ", text: "Reporting costs" },
- { icon: "π€", text: "Trust-based claims" }
- ].map((item, idx) => (
-
-
{item.icon}
-
{item.text}
+
+
+
+
4 - Participate in Base-side campaigns
- ))}
+
-
- {/* Outcome */}
-
-
-
-
- {[
- {
- icon:
,
- text: "Funding tied to verifiable action",
- color: "text-green-400"
- },
- {
- icon:
,
- text: "Better accountability",
- color: "text-blue-400"
- },
- {
- icon:
,
- text: "Open infrastructure worth supporting",
- color: "text-purple-400"
- }
- ].map((outcome, idx) => (
-
-
- {outcome.icon}
+ {/* $cDCU Lifecycle */}
+
+
+ $cDCU Lifecycle
+
+
+ {/* Vertical connector line */}
+
+
+
+
+
+
+
1 - Earn through verified cleanups
+
-
{outcome.text}
-
- ))}
-
-
- {/* Taglines */}
-
-
- A base layer for future impact finance
-
-
- Fund what you can verify.
-
-
-
-
- {/* Expandable: Dive into tokenomics */}
-
-
- Dive into tokenomics
-
-
-
-
-
- {/* SECTION 1 - TWO-TOKEN OVERVIEW */}
-
-
- {/* Card 1 - $bDCU - Base */}
-
-
- BASE TOKEN: $bDCU
-
-
- The "action token." Used on Base for:
-
-
- -
- β’
- cleanup rewards
-
- -
- β’
- streaks
-
- -
- β’
- referrals
-
- -
- β’
- verifier staking
-
- -
- β’
- simple incentives
-
-
-
- View on Base
-
-
-
- {/* Card 2 - $cDCU - Celo */}
-
-
- CELO TOKEN: $cDCU
-
-
- Reputation, governance & advanced utilities
-
-
- -
- β’
- Earned through verified cleanups in the Celo dApp
-
- -
- β’
- Non-tradable by design (reputation-linked)
-
- -
- β’
- Used for governance via Gardens.fund
-
- -
- β’
- Stake to access Verifier roles
-
- -
- β’
- Required for streaks, dashboard, analytics
-
- -
- β’
- Powers the Celo ReFi + governance layer
-
-
-
-
-
-
-
- {/* SECTION 2 - TOKEN COMPARISON TABLE */}
-
-
- Token Comparison
-
-
-
-
-
- |
-
- $bDCU (Base)
- |
-
- $cDCU (Celo)
- |
-
-
-
-
- | Chain |
- Base |
- Celo |
-
-
- | Type |
- Liquid ERC-20 |
- Reputation + Governance |
-
-
- | Transferable |
- Yes |
- Non-tradable |
-
-
- | Primary Use |
- Fast incentives |
- Verified impact + governance |
-
-
- | Earned From |
- Mini app cleanups |
- Full dApp cleanups |
-
-
- | Staking Purpose |
- Verifier access |
- Verifier access + governance |
-
-
- | Governance |
- No |
- Yes (Gardens.fund) |
-
-
- | Hypercerts |
- No |
- Yes (every 10 cleanups) |
-
-
- | Market |
- Tradable |
- Non-tradable |
-
-
- | Total Supply |
- TBA |
- 10,000,000 fixed supply |
-
-
-
-
-
-
- {/* SECTION 3 - IMPACT SYSTEM CARDS */}
-
-
- Impact System
-
-
- {/* Card A - Impact Products */}
-
-
- Impact Products
-
-
- -
- β’
- Dynamic NFTs
-
- -
- β’
- Level up with each cleanup
-
- -
- β’
- Track long-term environmental history
-
-
-
-
- {/* Card B - Verifier System */}
-
-
- Verifier System
-
-
- -
- β’
- Stake $bDCU or $cDCU to join
-
- -
- β’
- Review Proof-of-Impact submissions
-
- -
- β’
- Earn verifier rewards
-
- -
- β’
- Slashing protects integrity
-
-
-
-
- {/* Card C - Hypercerts */}
-
-
- Hypercerts
-
-
- -
- β’
- Minted after every 10 verified cleanups
-
- -
- β’
- Permanent ERC-1155 impact certificate
-
- -
- β’
- Used for grants, ESG reporting, identity
-
-
-
-
-
-
- {/* SECTION 4 - TOKEN LIFECYCLE */}
-
-
- Token Lifecycle
-
+
+
+
+
2 - Stake for governance and Verifier role
+
+
-
- {/* $bDCU Lifecycle */}
-
-
- $bDCU Lifecycle
-
-
- {/* Vertical connector line */}
-
-
-
-
-
-
-
1 - Earn through the Base mini app
-
-
-
-
-
-
-
2 - Stake to become a Verifier
-
-
-
-
-
-
-
3 - Trade freely on Base DEXes
-
-
-
-
-
-
-
4 - Participate in Base-side campaigns
-
-
+
+
+
+
3 - Grow Impact Product reputation
-
- {/* $cDCU Lifecycle */}
-
-
- $cDCU Lifecycle
-
-
- {/* Vertical connector line */}
-
-
-
-
-
-
-
1 - Earn through verified cleanups
-
-
-
-
-
-
-
2 - Stake for governance and Verifier role
-
-
-
-
-
-
-
3 - Grow Impact Product reputation
-
-
-
-
-
-
-
4 - Vote on proposals through Gardens.fund
-
-
+
+
+
+
4 - Vote on proposals through Gardens.fund
-
+
+
+
+
+ {/* SECTION 5 - $bDCU SUPPLY & ALLOCATION */}
+
+
+ supply and allocation.
+
+
+ $bDCU: total supply TBA
+
- {/* SECTION 5 - $bDCU SUPPLY & ALLOCATION */}
-
-
- supply and allocation.
-
-
- $bDCU: total supply TBA
+
+
+
+ Circulating Supply - 85%
+
+
+ 85% of the total supply circulates immediately
+
-
-
-
- Circulating Supply - 85%
-
-
- 85% of the total supply circulates immediately
-
-
+
+
+ Clanker Vault - 15%
+
+
+ 15% of supply is held in the Clanker Vault for burns, ecosystem rewards, and liquidity stabilization
+
+
+
-
-
- Clanker Vault - 15%
-
-
- 15% of supply is held in the Clanker Vault for burns, ecosystem rewards, and liquidity stabilization
-
-
-
+
+ $cDCU: total supply 10,000,000
+
+
+
+ {/* SECTION 6 - $cDCU SUPPLY & ALLOCATION */}
+
+
+
+
+ Staking & Verifier Rewards - 35%
+
+
+ Supports long-term staking and review system
+
+
-
- $cDCU: total supply 10,000,000
+
+
+ Cleanup Campaign Incentives - 25%
+
+
+ Fuels Impact Circles, leaderboards and global events
-
-
- {/* SECTION 6 - $cDCU SUPPLY & ALLOCATION */}
-
-
-
-
- Staking & Verifier Rewards - 35%
-
-
- Supports long-term staking and review system
-
-
+
-
-
- Cleanup Campaign Incentives - 25%
-
-
- Fuels Impact Circles, leaderboards and global events
-
-
+
+
+ Public Distribution - 20%
+
+
+ Onboarding users through controlled vesting
+
+
-
-
- Public Distribution - 20%
-
-
- Onboarding users through controlled vesting
-
-
+
+
+ Team & Development - 10%
+
+
+ Multi-year vesting for stability and alignment
+
+
-
-
- Team & Development - 10%
-
-
- Multi-year vesting for stability and alignment
-
-
+
+
+ Verification Treasury - 5%
+
+
+ Funds Proof-of-Impact validation rewards
+
+
-
-
- Verification Treasury - 5%
-
-
- Funds Proof-of-Impact validation rewards
-
-
+
+
+ Community Incentives - 4%
+
+
+ Supports ambassadors, referrals, content, contributors
+
+
-
-
- Community Incentives - 4%
-
-
- Supports ambassadors, referrals, content, contributors
-
-
+
+
+ Liquidity - 1%
+
+
+ Seeds Celo-side DEX access
+
+
+
+
-
-
- Liquidity - 1%
-
-
- Seeds Celo-side DEX access
-
-
-
-
-
- {/* SECTION 7 - CLOSING STATEMENT */}
-
-
-
- Built for a transparent global impact economy - where every cleanup becomes verified onchain action.
-
-
-
+ {/* SECTION 7 - CLOSING STATEMENT */}
+
+
+
+ Built for a transparent global impact economy - where every cleanup becomes verified onchain action.
+
-
+
);
diff --git a/app/userguide/page.tsx b/app/userguide/page.tsx
index 05b059b..429866e 100644
--- a/app/userguide/page.tsx
+++ b/app/userguide/page.tsx
@@ -14,7 +14,7 @@ export default function UserGuidePage() {
{/* Back Button */}
+
Dive deeper to the network β
@@ -110,7 +110,7 @@ export default function WhoIsThisFor() {
See how funding works β