How to add an image below the header on homepage

You can use the hook astra_content_before to add the image to the content before. Eg.

add_action( 'astra_content_before', 'astra_child_theme_image_before_content' );

function astra_child_theme_image_before_content() {
   // Code here
}