Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions apps/app/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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',
Expand Down Expand Up @@ -88,7 +81,7 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {
<WebVitals />
<TRPCProvider>
<body
className={`${roboto.variable} ${robotoMono.variable} ${robotoSerif.variable} ${inter.variable} overflow-x-hidden text-base text-neutral-black antialiased`}
className={`${roboto.variable} ${robotoMono.variable} ${robotoSerif.variable} overflow-x-hidden text-base text-neutral-black antialiased`}
>
<PostHogProvider>{children}</PostHogProvider>
<ReactQueryDevtools initialIsOpen={false} />
Expand Down
Loading