From 5e48b675887885993d418e9ab79a9812d1063fe2 Mon Sep 17 00:00:00 2001
From: Marco
Date: Wed, 26 Aug 2026 15:55:17 +0000
Subject: [PATCH] 3x3-system: match icon-row/StepArrow pattern used site-wide
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Category cards were a standalone 3-card grid with red/amber/green
accents (matching the original blog post) — out of step with how
every other icon-row on the site looks. Now the same icon-above-
text + StepArrow layout as /7-tage-klarheits-check's "So
funktioniert" and /lebensuhr's phase row, and the icons are a single
brand-orange line-icon style instead of per-category colors.
---
app/3x3-system/page.tsx | 74 ++++++++++++++++++++++++-----------------
1 file changed, 44 insertions(+), 30 deletions(-)
diff --git a/app/3x3-system/page.tsx b/app/3x3-system/page.tsx
index c99baa4..257d231 100644
--- a/app/3x3-system/page.tsx
+++ b/app/3x3-system/page.tsx
@@ -3,6 +3,7 @@ import Link from "next/link";
import Image from "next/image";
import { Reveal, RevealGroup, RevealItem } from "../components/Reveal";
import { Footer } from "../components/Footer";
+import { StepArrow } from "../components/StepArrow";
const title = "Das 3×3-System: Zu wenig geschafft oder zu viel gewollt?";
const description =
@@ -57,29 +58,33 @@ function Quote({ children }: { children: React.ReactNode }) {
);
}
-function IconTarget({ color }: { color: string }) {
+// Same brand-orange line-icon language as /lebensuhr's IconSunrise etc. —
+// switched from per-category red/amber/green (matching the original blog
+// post's 🔴🟡🟢) to a single brand color, for consistency with every
+// other icon-row on the site, none of which color-code their icons.
+function IconTarget() {
return (
-
- {/* Full-width band, same structural role as /lebensuhr's phase-row
- section (bg-bg-muted, breaks out of the 48rem column) — plus
- the IconGrid3x3 mark as this page's own identity graphic,
- paralleling that page's clock face. */}
+ {/* Full-width band, same structural role AND same icon-above-text/
+ StepArrow row treatment as /7-tage-klarheits-check's "So
+ funktioniert" section and /lebensuhr's phase row — a plain
+ 3-card grid here read out of place next to those. IconGrid3x3
+ stays as this page's own identity graphic, paralleling
+ /lebensuhr's clock face. */}
-