Hero section inside <header> or <main>

I have seen a .hero/.intro section (usually the big intro image on a site) both in a <header> tag and in a <main> tag.

What would be the correct place to put it in?
Assuming standard structure:
<header>
  <nav></nav>
  <!-- place 1 -->
</header>
<main>
  <!-- place 2 -->
</main>
<footer>
</footer>
Was this page helpful?