From 068243a49ef7dad14646da5568432846dd9c3953 Mon Sep 17 00:00:00 2001 From: Anastasia <142572092+LuminaEnvision@users.noreply.github.com> Date: Sun, 8 Mar 2026 21:23:45 +0700 Subject: [PATCH] Litepaper redesign, footer updates, token cards alignment, ecosystem icon visibility, contract line fit Made-with: Cursor --- app/litepaper/page.tsx | 881 +++++++++--------- app/page.tsx | 2 - components/HeroSection/Hero.tsx | 12 +- .../TokenizeImpactSection.tsx | 4 +- components/LitepaperNav/LitepaperNav.tsx | 40 + .../LitepaperWhyPillarCards.tsx | 69 ++ components/NavLink/NavLink.tsx | 29 +- .../StartCleaningChoice.tsx | 121 +++ components/TheoryOfChange/TheoryOfChange.tsx | 7 +- .../UseDeCleanupToday/UseDeCleanupToday.tsx | 4 +- components/WhoIsThisFor/WhoIsThisForCards.tsx | 36 +- 11 files changed, 706 insertions(+), 499 deletions(-) create mode 100644 components/LitepaperNav/LitepaperNav.tsx create mode 100644 components/LitepaperWhyPillarCards/LitepaperWhyPillarCards.tsx create mode 100644 components/StartCleaningChoice/StartCleaningChoice.tsx diff --git a/app/litepaper/page.tsx b/app/litepaper/page.tsx index 1020e95..008ea0e 100644 --- a/app/litepaper/page.tsx +++ b/app/litepaper/page.tsx @@ -2,400 +2,278 @@ import type { Metadata } from "next"; import Link from "next/link"; import Image from "next/image"; import { - Leaf, - Info, + Camera, + Scan, + UserCheck, + Link as LinkIcon, Building2, RefreshCw, CloudSun, Droplets, + Leaf, + ArrowRight, + CheckCircle, + Clock, + ArrowUpRight, Smartphone, - Camera, + LayoutDashboard, Wand2, Wallet, - ArrowLeftRight, - Layers, MapPin, FileText, MessageCircle, - Scan, - UserCheck, - Link as LinkIcon, + Layers, Star, ShieldCheck, - CheckCircle, - Clock, - ArrowUpRight, - Menu } from "lucide-react"; +import LitepaperNav from "@/components/LitepaperNav/LitepaperNav"; +import StartCleaningChoice from "@/components/StartCleaningChoice/StartCleaningChoice"; import TheoryOfChange from "@/components/TheoryOfChange/TheoryOfChange"; -import LitepaperOverviewCards from "@/components/LitepaperOverviewCards/LitepaperOverviewCards"; - +import LitepaperWhyPillarCards from "@/components/LitepaperWhyPillarCards/LitepaperWhyPillarCards"; export const metadata: Metadata = { title: "DeCleanup Network - Litepaper", description: "Infrastructure for verifiable, governable, and fundable environmental impact. February 2026 Edition.", }; +const scrollSection = "scroll-mt-24"; + export default function LitepaperPage() { return (
- {/* Navigation (Litepaper specific) */} -