79810840

Date: 2025-11-06 04:29:52
Score: 0.5
Natty:
Report link

Remove <html>, <head>, and <body> tags from your Layout component.

keep only React elements like this:

export function Layout() {
  return (
    <>
      <NavBar />
      <Outlet />
      <Footer />
      <ScrollRestoration />
      <Scripts />
    </>
  );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kishan Dobariya