plugin to Add content before or after Add to cart button in product page code example
Example: add content after add to cart button woo commerce
add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after_addtocart_button_func' );
function add_content_after_addtocart_button_func() {
// Echo content.
echo '<div class="second_content">Place your content here!</div>';
}