Skip to content

Commit 2c5ff93

Browse files
authored
Merge pull request #1461 from db-ui/1460-no-language-defined-in-example-pages
feat: added `en` as the default language
2 parents 67ea4e2 + 89c48fd commit 2c5ff93

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
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 />
9+
<NextScript />
10+
</body>
11+
</Html>
12+
);
13+
}

0 commit comments

Comments
 (0)