diff --git a/app/litepaper/page.tsx b/app/litepaper/page.tsx index 348afbc..1020e95 100644 --- a/app/litepaper/page.tsx +++ b/app/litepaper/page.tsx @@ -114,6 +114,74 @@ export default function LitepaperPage() { + {/* Why DeCleanup – pillars (from landing) */} +
+
+

Why DeCleanup Network Exists

+ + {/* Problem → Solution (same design as main page) */} +
+
+ {/* Problem */} +
+
+ + + +
+

The Problem

+

Cleanups happen, but there's no credible proof or transparent coordination

+
+ + {/* Arrow */} +
+ + + +
+ + {/* Solution */} +
+
+ + + +
+

The Solution

+

Verifiable, incentivized, and transparently funded environmental action

+
+
+
+ +
+
+ +

DMRV

+

Data, Measurement, Reporting, Verification

+

Credible proof of environmental impact

+
+
+ +

Onchain Immutability

+

Permanent Records

+

Blockchain-verified cleanup history

+
+
+ +

Incentives & Reputation

+

Reward Real Work

+

Earn recognition for environmental action

+
+
+ +

Open Coordination

+

Transparent Funding

+

Community-driven cleanup initiatives

+
+
+
+
+ {/* 1. Overview Cards (flip on click) */}
diff --git a/components/GetStartedFlow/GetStartedFlow.tsx b/components/GetStartedFlow/GetStartedFlow.tsx index d662914..24757ae 100644 --- a/components/GetStartedFlow/GetStartedFlow.tsx +++ b/components/GetStartedFlow/GetStartedFlow.tsx @@ -90,10 +90,11 @@ function GuideLinks({ variant }: { variant: "base" | "celo" | "wallet" }) { export default function GetStartedFlow() { const [step, setStep] = useState("intro"); + const [diveDeeperOpen, setDiveDeeperOpen] = useState(false); return (
- {/* Step: Intro - For those who care about the planet (before flowchart) */} + {/* Step: Intro - For those who care about the planet */} {step === "intro" && (
{/* Header */} @@ -102,10 +103,32 @@ export default function GetStartedFlow() { For those who care about the planet

- Environmental action deserves recognition. Here's how DeCleanup makes it happen. + Environmental action deserves recognition. Here's what to do to get it.

+ + + + + {diveDeeperOpen && ( +
{/* The Problem - Visual Cards */}
@@ -364,16 +387,8 @@ export default function GetStartedFlow() {
- {/* CTA Button */} - +
+ )}
); }