File tree Expand file tree Collapse file tree 2 files changed +2
-17
lines changed
Expand file tree Collapse file tree 2 files changed +2
-17
lines changed Original file line number Diff line number Diff line change 88 --color-background : var (--background );
99 --color-foreground : var (--foreground );
1010 --font-sans : var (--font-sans );
11- --font-mono : var (--font-geist-mono );
1211 --color-sidebar-ring : var (--sidebar-ring );
1312 --color-sidebar-border : var (--sidebar-border );
1413 --color-sidebar-accent-foreground : var (--sidebar-accent-foreground );
Original file line number Diff line number Diff line change 11import type { Metadata } from "next" ;
2- import { Geist , Geist_Mono , Inter } from "next/font/google" ;
2+ import { Inter } from "next/font/google" ;
33import "./globals.css" ;
44
55const inter = Inter ( { subsets : [ "latin" ] , variable : "--font-sans" } ) ;
66
7- const geistSans = Geist ( {
8- variable : "--font-geist-sans" ,
9- subsets : [ "latin" ] ,
10- } ) ;
11-
12- const geistMono = Geist_Mono ( {
13- variable : "--font-geist-mono" ,
14- subsets : [ "latin" ] ,
15- } ) ;
16-
177export const metadata : Metadata = {
188 title : "Create Next App" ,
199 description : "Generated by create next app" ,
@@ -26,11 +16,7 @@ export default function RootLayout({
2616} > ) {
2717 return (
2818 < html lang = "en" className = { inter . variable } >
29- < body
30- className = { `${ geistSans . variable } ${ geistMono . variable } antialiased` }
31- >
32- { children }
33- </ body >
19+ < body className = { `${ inter . variable } antialiased` } > { children } </ body >
3420 </ html >
3521 ) ;
3622}
You can’t perform that action at this time.
0 commit comments