Got it,
make it a shortcode
add_shortcode('render_hero_block', function() {
$block_id = 4879; // Deine Block-ID
$block = get_post($block_id);
if ($block) {
return do_blocks($block->post_content);
}
return '';
});
and add shortcode to page-hero
[render_hero_block]