From c55e28a400ca211d78e85888062847320c8d9886 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 3 Mar 2026 14:58:15 -0800 Subject: [PATCH] style: gradient background + (you)rSpace wordmark on landing page Co-Authored-By: Claude Opus 4.6 --- server/landing.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/server/landing.ts b/server/landing.ts index 62a4cf1..5111640 100644 --- a/server/landing.ts +++ b/server/landing.ts @@ -59,7 +59,7 @@ export function renderMainLanding(modules: ModuleInfo[]): string {
Community Platform -

(ou)rSpace

+

(you)rSpace

Remember back when the internet was cool?

A collaborative, local-first platform with ${modules.length}+ interoperable tools. @@ -396,6 +396,18 @@ const SPACE_DASHBOARD_CSS = ` const MAIN_LANDING_CSS = ` /* Main landing page extras (on top of rl-* utilities) */ +body { + background: linear-gradient( + 170deg, + #0a0f1e 0%, + #0f172a 25%, + #131b2e 45%, + #0e1628 65%, + #0d1424 85%, + #080d19 100% + ); + background-attachment: fixed; +} .main-wordmark { font-size: 3.5rem; }