File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { Toast } from '@op/ui/Toast';
55import '@op/ui/tailwind-styles' ;
66import { ReactQueryDevtools } from '@tanstack/react-query-devtools' ;
77import type { Metadata , Viewport } from 'next' ;
8- import { Inter , Roboto , Roboto_Mono , Roboto_Serif } from 'next/font/google' ;
8+ import { Roboto , Roboto_Mono , Roboto_Serif } from 'next/font/google' ;
99import Script from 'next/script' ;
1010
1111import { register } from '../../instrumentation' ;
@@ -21,13 +21,6 @@ const roboto = Roboto({
2121 display : 'swap' ,
2222} ) ;
2323
24- const inter = Inter ( {
25- subsets : [ 'latin' ] ,
26- weight : 'variable' ,
27- variable : '--font-inter' ,
28- display : 'swap' ,
29- } ) ;
30-
3124const robotoMono = Roboto_Mono ( {
3225 subsets : [ 'latin' ] ,
3326 weight : 'variable' ,
@@ -88,7 +81,7 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {
8881 < WebVitals />
8982 < TRPCProvider >
9083 < body
91- className = { `${ roboto . variable } ${ robotoMono . variable } ${ robotoSerif . variable } ${ inter . variable } overflow-x-hidden text-base text-neutral-black antialiased` }
84+ className = { `${ roboto . variable } ${ robotoMono . variable } ${ robotoSerif . variable } overflow-x-hidden text-base text-neutral-black antialiased` }
9285 >
9386 < PostHogProvider > { children } </ PostHogProvider >
9487 < ReactQueryDevtools initialIsOpen = { false } />
You can’t perform that action at this time.
0 commit comments