/* eslint-disable canonical/id-match */ import { timeZone } from './config'; import { NextIntlClientProvider } from 'next-intl'; import { getMessages } from 'next-intl/server'; import { type PropsWithChildren } from 'react'; export async function I18nProvider({ children }: Readonly) { const messages = await getMessages(); return ( {children} ); }