Skip to content

Commit 8bcdfb9

Browse files
committed
fix:lang="en"
1 parent 3e7fd03 commit 8bcdfb9

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

app/layout.js

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
1-
import NavBar from "./components/NavBar";
2-
import "./styles/global.css";
3-
import "./styles/markdown.css";
4-
import { Providers } from "./theme-provider";
5-
import { IBM_Plex_Sans, Caveat } from "next/font/google";
1+
import NavBar from './components/NavBar';
2+
import './styles/global.css';
3+
import './styles/markdown.css';
4+
import { Providers } from './theme-provider';
5+
import { IBM_Plex_Sans, Caveat } from 'next/font/google';
66

77
const ibm = IBM_Plex_Sans({
8-
subsets: ["latin"],
9-
weight: "400",
10-
variable: "--font-ibm",
8+
subsets: ['latin'],
9+
weight: '400',
10+
variable: '--font-ibm',
1111
});
1212

1313
const cav = Caveat({
14-
subsets: ["latin"],
15-
variable: "--font-cav",
14+
subsets: ['latin'],
15+
variable: '--font-cav',
1616
});
1717

1818
export default function RootLayout({ children }) {
1919
return (
2020
<html
2121
className={`${ibm.variable} ${cav.variable}`}
2222
suppressHydrationWarning={true}
23+
lang='en'
2324
>
2425
<body>
2526
<Providers>

0 commit comments

Comments
 (0)