Where can I locate the H1 on my home page using the Prestige theme?

I can’t find the H1 of my home page, I’m on the prestige theme. I need to find my H1 for SEO. Can you help me please?

I’ve been looking for a solution for this too, I’ve read a lot of threads here, but I haven’t found anything that fits.
I have Debut theme, but the problem is the same.
The thing is that by default the logo is wrapped in the h1 tag for some reason. Here is this code in the header.liquid file:

<h1 class="h2 site-header__logo">
        {% else %}
          <div class="h2 site-header__logo">
        {% endif %}
          {% if section.settings.logo %}
            {%- assign img_url = section.settings.logo | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
            <a href="{{ routes.root_url }}" class="site-header__logo-image{% if section.settings.align_logo == 'center' %} site-header__logo-image--centered{% endif %}" data-image-loading-animation>
              {% capture logo_alt %}{{ section.settings.logo.alt | default: shop.name }}{% endcapture %}
              <img class="lazyload js"
                   src="{{ section.settings.logo | img_url: '300x300' }}"
                   data-src="{{ img_url }}"
                   data-widths="[180, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
                   data-aspectratio="{{ section.settings.logo.aspect_ratio }}"
                   data-sizes="auto"
                   alt="{{ logo_alt | escape }}"
                   style="max-width: {{ section.settings.logo_max_width }}px">
              <noscript>
                {% capture image_size %}{{ section.settings.logo_max_width | escape }}x{% endcapture %}
                <img src="{{ section.settings.logo | img_url: image_size }}"
                     srcset="{{ section.settings.logo | img_url: image_size }} 1x, {{ section.settings.logo | img_url: image_size, scale: 2 }} 2x"
                     alt="{{ section.settings.logo.alt | default: shop.name }}"
                     style="max-width: {{ section.settings.logo_max_width }}px;">
              </noscript>
            </a>
          {% else %}
            <a class="site-header__logo-link" href="{{ routes.root_url }}">{{ shop.name }}</a>
          {% endif %}
        {% if request.page_type == 'index' %}
          </h1>

The only solution I found was to replace

and

in the code above with

and


And below on the main page in your blocks you can change any h2 to h1.
I, for example, in the file hero.liquid changed h2 to h1.

I hope this helps you. Good luck!

thank you for your answer,
but it’s too complicated for me your answer, and I would like to have an answer for my Prestige theme I’m afraid to make a mistake in the headers