Next.js Discord

Discord Forum

What does this mean? i've searched the web and can't seem to solve the problem

Answered
Selkirk Rex posted this in #help-forum
Open in Discord
Selkirk RexOP
I'll be sending the screenshots of the html
Answered by joulev
remove <html> and <body> from the inner layout
View full answer

4 Replies

Selkirk RexOP
@Selkirk Rex I'll be sending the screenshots of the html
remove <html> and <body> from the inner layout
Answer
@joulev remove <html> and <body> from the inner layout
Selkirk RexOP
so basically Layout (main) > layout > layout > layout > etc. anything below that should that have it?
only the topmost layout should have <html> and <body>

they are nested together so your code above becomes
<html>
  <body>
    <html>
      <body>
        <div ...>
      </body>
    </html>
  </body>
</html>

which is invalid