From 6e8005e1509d7beb25801e55ad749ab725543e9a Mon Sep 17 00:00:00 2001 From: Anastasia <142572092+LuminaEnvision@users.noreply.github.com> Date: Fri, 30 Jan 2026 17:43:10 +0700 Subject: [PATCH] Landing + litepaper: hero, who-is-this-for, DMRV, earn rewards, litepaper rewrite, AI/TACO simplified, backed by, Feb 2026 --- app/globals.css | 13 + app/layout.tsx | 19 +- app/litepaper/page.tsx | 400 ++++++++++-------- app/page.tsx | 11 +- components/HeroSection/Hero.tsx | 120 ++++-- .../TokenizeImpactSection.tsx | 157 +++---- .../UseDeCleanupToday/UseDeCleanupToday.tsx | 29 +- .../WhatIsDeCleanupNetwork.tsx | 182 ++++---- components/WhoIsThisFor/WhoIsThisFor.tsx | 113 +++++ 9 files changed, 658 insertions(+), 386 deletions(-) create mode 100644 components/WhoIsThisFor/WhoIsThisFor.tsx diff --git a/app/globals.css b/app/globals.css index f47a2d9..3aa8526 100644 --- a/app/globals.css +++ b/app/globals.css @@ -135,6 +135,19 @@ body { animation-fill-mode: both; } +/* Slow spin for DMRV concentric circles */ +@keyframes spin-60s { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +.animate-\[spin_60s_linear_infinite\] { + animation: spin-60s 60s linear infinite; +} /* Card hover effects */ .card-hover { diff --git a/app/layout.tsx b/app/layout.tsx index e5e3b3e..0a33649 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -25,7 +25,24 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + + + {/* Google tag (gtag.js) */} +