File tree Expand file tree Collapse file tree 2 files changed +5
-13
lines changed
Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 4646}
4747
4848@theme inline {
49- --font-sans : var (--font-geist-sans );
50- --font-mono : var (--font-geist-mono );
49+ --font-sans : var (--font-inter );
5150
5251 --color-background : hsl (var (--background ));
5352 --color-foreground : hsl (var (--foreground ));
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 { Inter } from "next/font/google" ;
33import { Toaster } from "sonner" ;
44import { Navbar } from "@/components/navbar" ;
55import "@/lib/api-client" ;
66import "./globals.css" ;
77
8- const geistSans = Geist ( {
9- variable : "--font-geist-sans" ,
10- subsets : [ "latin" ] ,
11- } ) ;
12-
13- const geistMono = Geist_Mono ( {
14- variable : "--font-geist-mono" ,
8+ const inter = Inter ( {
9+ variable : "--font-inter" ,
1510 subsets : [ "latin" ] ,
1611} ) ;
1712
@@ -27,9 +22,7 @@ export default function RootLayout({
2722} > ) {
2823 return (
2924 < html lang = "en" >
30- < body
31- className = { `${ geistSans . variable } ${ geistMono . variable } antialiased` }
32- >
25+ < body className = { `${ inter . variable } antialiased` } >
3326 < Navbar />
3427 { children }
3528 < Toaster
You can’t perform that action at this time.
0 commit comments