We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35b278c commit 7e43f1cCopy full SHA for 7e43f1c
.eslintrc.json
@@ -1,3 +1,5 @@
1
{
2
- "extends": "next/core-web-vitals"
+ "extends": "next/core-web-vitals",
3
+ "rules": { "react/no-unescaped-entities": 0 }
4
+
5
}
src/app/layout.js
@@ -10,7 +10,7 @@ export const metadata = {
10
11
export default function RootLayout({ children }) {
12
return (
13
- <html lang="en">
+ <html lang="en" className="dark ">
14
<body className={inter.className}>{children}</body>
15
</html>
16
);
0 commit comments