File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
77const 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
1313const cav = Caveat ( {
14- subsets : [ " latin" ] ,
15- variable : " --font-cav" ,
14+ subsets : [ ' latin' ] ,
15+ variable : ' --font-cav' ,
1616} ) ;
1717
1818export 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 >
You can’t perform that action at this time.
0 commit comments