Trage dich ein und erhalte ab sofort täglich einen Impuls für mehr Klarheit und Fokus.
diff --git a/app/components/Hero.tsx b/app/components/Hero.tsx
index 2e01962..630317b 100644
--- a/app/components/Hero.tsx
+++ b/app/components/Hero.tsx
@@ -103,7 +103,7 @@ export function Hero() {
image/banner above it on true Mobile), left-aligned with the
rest of the text column again from sm: up. */}
{/* Letting this wrap to two lines below lg: (tried 2026-07-24)
diff --git a/app/components/Navbar.tsx b/app/components/Navbar.tsx
index 9016f9f..768c799 100644
--- a/app/components/Navbar.tsx
+++ b/app/components/Navbar.tsx
@@ -63,7 +63,7 @@ function getNavLinks(singleActiveProduct: boolean) {
// /der-eine and /tasse-die-pause (both bespoke product detail pages, same
// "own route, not nested" shape as /todo-cards) added here for the same
// reason (2026-08-25).
-const WERKZEUGE_ROUTES = ["/todo-cards", "/lebensuhr", "/newsletter", "/der-eine", "/tasse-die-pause"];
+const WERKZEUGE_ROUTES = ["/todo-cards", "/7-tage-klarheits-check", "/newsletter", "/der-eine", "/tasse-die-pause"];
function isNavLinkActive(href: string, pathname: string, activeSection: string): boolean {
if (href === "#werkzeuge") {
diff --git a/app/lib/payload.ts b/app/lib/payload.ts
index f60867e..48526da 100644
--- a/app/lib/payload.ts
+++ b/app/lib/payload.ts
@@ -817,7 +817,7 @@ export async function getWerkzeugeCards(): Promise {
}));
}
-export type TestimonialsPage = "todo-cards" | "newsletter" | "challenge" | "der-eine";
+export type TestimonialsPage = "todo-cards" | "newsletter" | "klarheits-check" | "der-eine";
export type Testimonial = { id: number; quote: string; name: string; role: string; avatar: string };
@@ -842,7 +842,7 @@ export function mapPayloadTestimonial(doc: PayloadTestimonial): Testimonial {
}
// Powers the identically-styled customer testimonial grids on /todo-cards,
-// /newsletter, /challenge, and /der-eine (see TestimonialsGrid.tsx) —
+// /newsletter, /7-tage-klarheits-check, and /der-eine (see TestimonialsGrid.tsx) —
// previously hardcoded arrays kept manually in sync. The single-quote
// "photo band" testimonials on /not-found and /bestellbestaetigung are a
// different shape (no avatar/role) and are not part of this collection.