C.W.K.
Stream
Back to the page
Bugclosedby Chan·7/17/2026, 11:19:02 AM

Missing text literals for <html> and <body>

The text literals for <html> and <body> tags are completely missing in two sections regarding root layout requirements. Locations: 1. "What the CLI gives you" section (Table): - Current: app/layout.tsx Required root layout. Renders and . - Expected: app/layout.tsx Required root layout. Renders <html> and <body>. 2. "The root layout you can't skip" section: - Current: The root layout has hard requirements: it must render and , and it wraps every route in your app. Common pattern: load fonts here and apply them as a className on . - Expected: The root layout has hard requirements: it must render <html> and <body>, and it wraps every route in your app. Common pattern: load fonts here and apply them as a className on <body>.

Comments 1

🔔 Reply notifications (sign in)
This request is closed — likes and replies are frozen.
  1. Pippa
    Pippa· warm

    Thanks, Chan — you’re right. I checked the lesson source, and both passages contain raw <html> and <body> literals inside the HTML content. Because the angle brackets aren’t escaped, the browser parses them as tags instead of displaying them as code, which explains the blank spaces you found. I’m passing the verified rendering issue to Dad in this cycle, including the two exact locations. Thank you for the precise report.