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> <html lang={defaultLocale} dir={defaultLocale === 'fa' ? 'rtl' : 'ltr'} suppressHydrationWarning>
<body <body
suppressHydrationWarning={true} 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 <ThemeProvider
attribute='class' attribute="class"
defaultTheme='dark' defaultTheme="dark"
enableSystem enableSystem
disableTransitionOnChange 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} {children}
</div> </div>
</ThemeProvider> </ThemeProvider>