File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { Metadata } from "next" ;
2- import { Geist , Geist_Mono } from "next/font/google" ;
2+ import { JetBrains_Mono , Inter } from "next/font/google" ;
33import "./globals.css" ;
44
5- const geistSans = Geist ( {
6- variable : "--font-geist-sans " ,
5+ const jetbrainsMono = JetBrains_Mono ( {
6+ variable : "--font-jetbrains-mono " ,
77 subsets : [ "latin" ] ,
88} ) ;
99
10- const geistMono = Geist_Mono ( {
11- variable : "--font-geist-mono " ,
10+ const inter = Inter ( {
11+ variable : "--font-inter " ,
1212 subsets : [ "latin" ] ,
1313} ) ;
1414
@@ -25,7 +25,7 @@ export default function RootLayout({
2525 return (
2626 < html lang = "en" >
2727 < body
28- className = { `${ geistSans . variable } ${ geistMono . variable } antialiased` }
28+ className = { `${ jetbrainsMono . variable } ${ inter . variable } antialiased` }
2929 >
3030 { children }
3131 </ body >
You can’t perform that action at this time.
0 commit comments