I am making a website with Next.js. I want to have a header with position: sticky; behavior.
However, Next.js automatically generates a div with the attribute id="__next" at the root of my website without my permission.
I need to remove that div so that the position: sticky; behavior of my header can work the way it is expected to do. How can I do that?
