'use client'; import { RootProvider } from 'fumadocs-ui/provider/next'; import { i18nProvider } from 'fumadocs-ui/i18n'; import type { ReactNode } from 'react'; import { translations } from '@/lib/i18n'; import StaticSearchDialog from '@/components/search-dialog'; // Client-side provider wrapper. The custom static SearchDialog must be wired in // from a client component — a component function cannot be passed from a server // component across the RootProvider client boundary. export function DocsRootProvider({ lang, dir, children, }: { lang: string; dir: 'ltr' | 'rtl'; children: ReactNode; }) { return ( {children} ); }