From af5956848bc57826f4d6dcc2cac4c0f5f1c74250 Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 26 Aug 2026 15:37:58 +0000 Subject: [PATCH] Lebensuhr: add age range to each life phase card MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The four phases (Morgen/Vormittag/Nachmittag/Abend) had no explicit tie back to age — readers had to infer it themselves from the clock metaphor. Added an approximate age range per phase, using the same age/90 = time/24 scale as the table (Vormittag ends exactly at 12:00 = age 45, which conveniently lines up with "Mittag"). --- app/lebensuhr/page.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/lebensuhr/page.tsx b/app/lebensuhr/page.tsx index 326995d..7a90400 100644 --- a/app/lebensuhr/page.tsx +++ b/app/lebensuhr/page.tsx @@ -111,20 +111,28 @@ function Check() { ); } +// Age boundaries — same 90-year scale as lebensuhrRows below (age/90 = +// time/24), picked so "Vormittag" ends exactly at 12:00 (age 45), which +// also happens to line up with "Mittag" as the literal midpoint between +// Vormittag and Nachmittag. Independent of lebensuhrRows (different +// breakpoints), not derived from it. const phases = [ { icon: , title: "Der Morgen: Ausprobieren", + ageRange: "ca. 0–25 Jahre", desc: "Man probiert aus, lernt, macht Fehler, entdeckt Interessen. Man muss noch nicht alles perfekt können.", }, { icon: , title: "Der Vormittag: Aufbauen", + ageRange: "ca. 25–45 Jahre", desc: "Jetzt wird gebaut – Gewohnheiten, Beziehungen, Fähigkeiten. Ein Leben, das sich nach dem eigenen anfühlt.", }, { icon: , title: "Der Nachmittag: Stärken", + ageRange: "ca. 45–65 Jahre", desc: "Nicht alles neu, sondern das Bestehende wird stärker: Erfahrung zahlt sich aus, Entscheidungen fallen leichter.", }, { @@ -132,6 +140,7 @@ const phases = [ // the same arc-above-the-horizon silhouette, rays above it. icon: , title: "Der Abend: Weitergeben", + ageRange: "ca. 65–90 Jahre", desc: "Weniger Wachstum, mehr Bedeutung – weiterzugeben, was man aufgebaut hat.", }, ]; @@ -302,6 +311,7 @@ export default function LebensuhrPage() {

{phase.title}

+

{phase.ageRange}

{phase.desc}

,