Design custom Image with text along with one product in Dawn Theme

I want to design image featuring text alongside a single product in a dawn theme, please find the screenshot for your reference,

I have added the code in image with text for customization however theme does not support this


          {%- if block.settings.product != blank -%}
            

              {% assign product_image = block.settings.product.image | img_url: 'medium' %}
              
            

            
              ### {{ block.settings.product.title }}
              

{{ block.settings.product.price }}

            

          {%- else -%}
            

Please select a product.

          {%- endif -%}

How we can implement something like the image below using dawn theme?

Hi @Fazal110 ,

To add the functionality of selecting products and displaying their images in the Image with Text section, you’ll first need to include schema code in your customization. This schema code will allow users to select products, which you can then fetch and display using the code you provided earlier. Once the schema is in place, you can easily integrate the product data into your Image with Text section.

Let me know if you have any queries.

Thanks