Hero block: make subline more prominent (was too muted)

This commit is contained in:
Marco
2026-08-26 20:58:47 +00:00
parent 2280a4a4ba
commit 39ebf2604d
+7 -1
View File
@@ -67,7 +67,13 @@ export function renderPageBlockSync(block: PageBlock): React.ReactNode {
) : (
headline
)}
{block.subline && <p className="text-body text-text-muted">{block.subline}</p>}
{/* 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 && (
<p className="font-semibold text-h-emphasis text-text-primary leading-[1.4]">{block.subline}</p>
)}
{block.ctaLabel && block.ctaHref && (
<Link
href={block.ctaHref}