diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index d02a19c..e083a00 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -4,10 +4,14 @@ import { QueryProvider } from '@/providers/query'; import { ThemeProvider } from '@/providers/theme-provider'; import { I18nProvider } from '@/utils/i18n/provider'; import '@repo/ui/globals.css'; +import { cn } from '@repo/ui/lib/utils'; import { type Metadata } from 'next'; import { getLocale } from 'next-intl/server'; +import { Inter } from 'next/font/google'; import { type PropsWithChildren } from 'react'; +const inter = Inter({ subsets: ['latin', 'cyrillic'] }); + export const metadata: Metadata = { title: 'Запишись.онлайн', }; @@ -17,7 +21,7 @@ export default async function RootLayout({ children }: Readonly - +