diff --git a/apps/app/src/app/layout.tsx b/apps/app/src/app/layout.tsx index 3dd1c8a3d..f230667e3 100644 --- a/apps/app/src/app/layout.tsx +++ b/apps/app/src/app/layout.tsx @@ -5,7 +5,7 @@ import { Toast } from '@op/ui/Toast'; import '@op/ui/tailwind-styles'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; import type { Metadata, Viewport } from 'next'; -import { Inter, Roboto, Roboto_Mono, Roboto_Serif } from 'next/font/google'; +import { Roboto, Roboto_Mono, Roboto_Serif } from 'next/font/google'; import Script from 'next/script'; import { register } from '../../instrumentation'; @@ -21,13 +21,6 @@ const roboto = Roboto({ display: 'swap', }); -const inter = Inter({ - subsets: ['latin'], - weight: 'variable', - variable: '--font-inter', - display: 'swap', -}); - const robotoMono = Roboto_Mono({ subsets: ['latin'], weight: 'variable', @@ -88,7 +81,7 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => { {children}