Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 3e57700

Browse files
committed
use jetbrains mono
1 parent a02d383 commit 3e57700

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { type Metadata } from 'next'
2-
import { Inter, Sora, IBM_Plex_Mono } from 'next/font/google'
2+
import { Inter, Sora, JetBrains_Mono } from 'next/font/google'
33

44
import { Providers } from '@/app/providers'
55

@@ -21,9 +21,9 @@ const sora = Sora({
2121
display: 'swap',
2222
})
2323

24-
const ibmPlexMono = IBM_Plex_Mono({
24+
const jetBrainsMono = JetBrains_Mono({
2525
weight: ['500', '600', '700'],
26-
variable: '--font-ibm-plex-mono',
26+
variable: '--font-jetbrains-mono',
2727
display: 'swap',
2828
subsets: ['latin'],
2929
})
@@ -60,7 +60,7 @@ export default async function RootLayout({
6060
'h-full',
6161
inter.variable,
6262
sora.variable,
63-
ibmPlexMono.variable,
63+
jetBrainsMono.variable,
6464
)}
6565
suppressHydrationWarning
6666
>

0 commit comments

Comments
 (0)