Hero block: make subline more prominent (was too muted)
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user