From 93fcbd45ef24705aa55ca2d532f5cb1a17545825 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sat, 7 Feb 2026 13:50:26 +0000 Subject: [PATCH] Restyle hero with gradient background, remove old tagline Replace plain hero with rich forest-green gradient, radial glow effects, and subtle grid pattern. Remove "Bridging cosmic perspective with local action" tagline. Hero heading is now just "Cosmolocal Foundation" with white-on-dark treatment. Co-Authored-By: Claude Opus 4.6 --- src/app/globals.css | 32 ++++++++++++++++++++++++++ src/app/page.tsx | 56 +++++++++++++++++++++++---------------------- 2 files changed, 61 insertions(+), 27 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 1744fdd..5609b57 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -35,3 +35,35 @@ body { background: var(--background); color: var(--foreground); } + +/* Hero section */ +.hero-section { + background: linear-gradient( + 145deg, + #1a2e1a 0%, + #2d4a2d 25%, + #1c3a2a 50%, + #1a2835 75%, + #0f1f2e 100% + ); +} + +.hero-glow { + position: absolute; + inset: 0; + background: + radial-gradient(ellipse 60% 50% at 50% 0%, rgba(107, 159, 91, 0.2) 0%, transparent 70%), + radial-gradient(ellipse 40% 40% at 20% 80%, rgba(79, 121, 66, 0.12) 0%, transparent 60%), + radial-gradient(ellipse 40% 40% at 80% 60%, rgba(30, 80, 100, 0.1) 0%, transparent 60%); +} + +.hero-grid { + position: absolute; + inset: 0; + background-image: + linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), + linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); + background-size: 64px 64px; + mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%); + -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 6655472..06e0731 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,33 +34,35 @@ export default function Home() { {/* Hero */} -
-
- “What is heavy should be local, and what is light should be global and shared.” -
-

- Bridging cosmic perspective -
- with local action -

-

- The Cosmolocal Foundation envisions a world where local communities - thrive within regenerative economies, connected through global - knowledge-sharing and commons-based collaboration. -

-
- - Learn More - - - Documentation - +
+