From 39ebf2604d9f4c6b72c0610d8b76c7b886ddd3f6 Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 26 Aug 2026 20:58:47 +0000 Subject: [PATCH] Hero block: make subline more prominent (was too muted) --- app/components/PageBlocks.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/components/PageBlocks.tsx b/app/components/PageBlocks.tsx index 3cc7140..32694bb 100644 --- a/app/components/PageBlocks.tsx +++ b/app/components/PageBlocks.tsx @@ -67,7 +67,13 @@ export function renderPageBlockSync(block: PageBlock): React.ReactNode { ) : ( headline )} - {block.subline &&

{block.subline}

} + {/* text-primary + text-h-emphasis, not text-muted body — same + weight class as the homepage Hero's own subheading + ("Ich helfe dir..."), which a plain muted text-body read too + quiet next to. */} + {block.subline && ( +

{block.subline}

+ )} {block.ctaLabel && block.ctaHref && (