import { PageLink } from 'shared/components/link.mjs' import { useTranslation } from 'next-i18next' export const ns = ['modal'] export const MdxWrapper = ({ title = false, path, language, children }) => { const { t } = useTranslation(ns) const slug = `${language === 'en' ? '' : '/' + language}/docs/${path}` return ( <> {title ?