diff --git a/app/layout.tsx b/app/layout.tsx index 5e2ce2d..a38b174 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,7 +1,8 @@ +import { cn } from '@/lib/utils'; import { NextIntlClientProvider } from 'next-intl'; import { getLocale, getMessages } from 'next-intl/server'; -import { Inter } from 'next/font/google'; import './globals.css'; +import { Inter } from 'next/font/google'; const inter = Inter({ subsets: ['latin', 'cyrillic'] }); @@ -15,7 +16,10 @@ export default async function RootLayout({ children }: { readonly children: Reac return ( {children}