From b26a44b979e6c86ec33348209b80f1055f9f0fce Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 26 Aug 2026 16:23:26 +0000 Subject: [PATCH] Lebensuhr: add a purely symbolic clock icon above the headline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No numbers, no age/time data — just a clock silhouette (circle, ticks, hands at 10:10). Every previous clock attempt tried to carry actual data and kept going wrong; this one carries nothing, so there's nothing to get wrong. --- app/lebensuhr/page.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/app/lebensuhr/page.tsx b/app/lebensuhr/page.tsx index 7e5bd12..0efd96f 100644 --- a/app/lebensuhr/page.tsx +++ b/app/lebensuhr/page.tsx @@ -58,6 +58,28 @@ function Quote({ children }: { children: React.ReactNode }) { ); } +// Purely symbolic — no numbers, no data, just a clock silhouette above the +// headline. The earlier clock-face attempts all tried to carry the actual +// age/time data (see git history) and never quite worked; this one carries +// nothing, so there's nothing to get wrong. Hands fixed at ~10:10 (the +// classic symmetric watch-ad position), not "now". +function IconClockSymbol() { + return ( + + ); +} + // Same "icon-above-text, StepArrow-connected" row /7-tage-klarheits-check's // "So funktioniert" section and /todo-cards's/newsletter's own "How it // works" sections use — reused here for the four life phases instead of @@ -172,6 +194,7 @@ export default function LebensuhrPage() { Lebensuhr

+