import type { ReactNode } from 'react'; import { HomeLayout } from 'fumadocs-ui/layouts/home'; import LogoLight from '@/components/docs/logo'; export default async function Layout({ params, children }: { params: Promise<{ lang: string }>; children: ReactNode; }) { const lang = (await params).lang; return ( ) }} i18n > {children} ); }