cfahlgren1 HF staff commited on
Commit
3089f25
1 Parent(s): 02bf005

set dark theme

Browse files
Files changed (1) hide show
  1. src/pages/_document.tsx +2 -2
src/pages/_document.tsx CHANGED
@@ -2,7 +2,7 @@ import { Html, Head, Main, NextScript } from "next/document";
2
 
3
  export default function Document() {
4
  return (
5
- <Html lang="en">
6
  <Head />
7
  <body>
8
  <Main />
@@ -10,4 +10,4 @@ export default function Document() {
10
  </body>
11
  </Html>
12
  );
13
- }
 
2
 
3
  export default function Document() {
4
  return (
5
+ <Html lang="en" className="dark">
6
  <Head />
7
  <body>
8
  <Main />
 
10
  </body>
11
  </Html>
12
  );
13
+ }