diff --git a/app/3x3-system/page.tsx b/app/3x3-system/page.tsx
index ce8ca6b..354cd78 100644
--- a/app/3x3-system/page.tsx
+++ b/app/3x3-system/page.tsx
@@ -4,6 +4,7 @@ import Image from "next/image";
import { Reveal, RevealGroup, RevealItem } from "../components/Reveal";
import { Footer } from "../components/Footer";
import { StepArrow } from "../components/StepArrow";
+import { STEP_ICONS } from "../components/icons/StepIcons";
const title = "Das 3×3-System: Zu wenig geschafft oder zu viel gewollt?";
const description =
@@ -58,41 +59,10 @@ function Quote({ children }: { children: React.ReactNode }) {
);
}
-// 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 (
-
- );
-}
-
-function IconTrendingUp() {
- return (
-
- );
-}
-
-function IconShield() {
- return (
-
- );
-}
-
const categories = [
- { icon: , label: "Verantwortung", desc: "Etwas, das erledigt werden muss und für das du Verantwortung trägst." },
- { icon: , label: "Fortschritt", desc: "Etwas, das dich beruflich oder persönlich ein Stück weiterbringt." },
- { icon: , label: "Stabilität", desc: "Etwas, das deinen Alltag ordnet, deiner Gesundheit guttut oder Gleichgewicht schafft." },
+ { icon: STEP_ICONS.target(), label: "Verantwortung", desc: "Etwas, das erledigt werden muss und für das du Verantwortung trägst." },
+ { icon: STEP_ICONS.trendingUp(), label: "Fortschritt", desc: "Etwas, das dich beruflich oder persönlich ein Stück weiterbringt." },
+ { icon: STEP_ICONS.shield(), label: "Stabilität", desc: "Etwas, das deinen Alltag ordnet, deiner Gesundheit guttut oder Gleichgewicht schafft." },
];
export default function DreiXDreiSystemPage() {
diff --git a/app/7-tage-klarheits-check/page.tsx b/app/7-tage-klarheits-check/page.tsx
index 5f966fc..b90db15 100644
--- a/app/7-tage-klarheits-check/page.tsx
+++ b/app/7-tage-klarheits-check/page.tsx
@@ -5,6 +5,7 @@ import { draftMode } from "next/headers";
import { Footer } from "../components/Footer";
import { Reveal, RevealGroup, RevealItem } from "../components/Reveal";
import { StepArrow } from "../components/StepArrow";
+import { STEP_ICONS } from "../components/icons/StepIcons";
import { TestimonialsGrid } from "../components/TestimonialsGrid";
import { LiveTestimonialsGrid } from "../components/LiveTestimonialsGrid";
import { getTestimonials } from "../lib/payload";
@@ -33,49 +34,6 @@ export const metadata: Metadata = {
},
};
-function IconEnvelope() {
- return (
-
- );
-}
-
-function IconMailLines() {
- return (
-
- );
-}
-
-function IconNotepad() {
- return (
-
- );
-}
-
-function IconCheckCircle() {
- return (
-
- );
-}
-
function Check() {
return (