import type { Metadata } from 'next'; import { NextIntlClientProvider } from 'next-intl'; import './globals.css'; export const metadata: Metadata = { title: 'GSH Digital Services', description: '' }; type Props = Readonly<{ params: { locale: string; }, children: React.ReactNode; }>; export default async function RootLayout({ params, children }: Props) { const { locale } = await params; return ( {children} ); }