Skip to content

Commit c5b4147

Browse files
authored
seo: fix HTML lang attribute missing (#714)
1 parent 0dad850 commit c5b4147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/portal/src/pages/_document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Head, Html, Main, NextScript } from 'next/document';
22

33
export default function Document() {
44
return (
5-
<Html className="bg-slate-50">
5+
<Html lang="en" className="bg-slate-50">
66
<Head />
77
<body>
88
<Main />

0 commit comments

Comments
 (0)