Hello,
Unfortunately, this header layout doesn’t have any area for your custom text/buttons/images. But as a workaround you may turn on “My account links” in the header option in Theme Settings -> Shop -> My account. Then place this code into functions.php file in your child theme
<?php
function basel_header_block_header_links() {
?>
<div class="header-links">
<a href="http://yoururl.com"><img src="http://your_image_path.jpeg"></a>
</div>
<?php
}
Regards