From a88c2c1d84bd345408c4299123d2c9b642bdd893 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sun, 8 Dec 2024 19:35:10 +0300 Subject: [PATCH] layout: use cn function --- app/layout.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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}