yo-next-auth/app/[locale]/layout.tsx
2024-04-26 22:16:21 +03:00

28 lines
769 B
TypeScript

import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { ReactElement } from 'react'
import { I18nProviderClient } from '@/locales/client'
import { lc } from '@/lib/utils'
import './globals.css'
const inter = Inter({ subsets: ['cyrillic'] })
export const metadata: Metadata = {
title: 'Create Next App', description: 'Generated by create next app',
}
type RootLayoutProps = {
params: { locale: string }; children: ReactElement;
}
export default function RootLayout ({ params: { locale }, children }: Readonly<RootLayoutProps>) {
return (<html lang={lc(locale)?.java}>
<body className={inter.className}>
<I18nProviderClient locale={locale} fallback="Loading...">
{children}
</I18nProviderClient>
</body>
</html>)
}