fix: restore template literal backticks in layout.tsx className

This commit is contained in:
DevOps 2026-06-28 17:17:42 +00:00
parent be6e37b11f
commit 88be19c5a5

View File

@ -32,15 +32,15 @@ export default async function RootLayout({
<html lang={defaultLocale} dir={defaultLocale === 'fa' ? 'rtl' : 'ltr'} suppressHydrationWarning>
<body
suppressHydrationWarning={true}
className={${mikhak.variable} relative flex h-full w-full flex-col items-center justify-between antialiased}
className={`${mikhak.variable} ${inter.variable} ${jetbrainsMono.variable} relative flex h-full w-full flex-col items-center justify-between antialiased`}
>
<ThemeProvider
attribute='class'
defaultTheme='dark'
attribute="class"
defaultTheme="dark"
enableSystem
disableTransitionOnChange
>
<div className='main flex h-full w-full flex-wrap justify-center'>
<div className="main flex h-full w-full flex-wrap justify-center">
{children}
</div>
</ThemeProvider>