79771510

Date: 2025-09-22 10:45:48
Score: 1
Natty:
Report link

Do not use next/head in App Router. Remove it from your components if present.
Make sure your layout.tsx has proper structure:

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dhiraj Rupnawar