// Dependencies import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import { useTranslation } from 'next-i18next' // Components import { PageWrapper, ns as pageNs } from 'shared/components/wrappers/page.mjs' import { WebLink } from 'shared/components/link.mjs' import { siteConfig } from 'site/site.config.mjs' import { freeSewingConfig } from 'shared/config/freesewing.config.mjs' import { ChoiceLink } from 'shared/components/choice-link.mjs' import { GitHubIcon, CodeIcon } from 'shared/components/icons.mjs' const ns = [...pageNs, 'labcode'] const RepoLink = ({ href = false }) => href ? ( ) : null /* * Each page MUST be wrapped in the PageWrapper component. * You also MUST spread props.page into this wrapper component * when path and locale come from static props (as here) * or set them manually. */ const DocsPage = ({ page }) => { const { t } = useTranslation(ns) return (
} >

{t('labcode:monorepo')}:

{siteConfig.repo !== freeSewingConfig.monorepo ? ( } >

{t('labcode:labrepo')}:

) : null}
) } export default DocsPage export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale, ns)), page: { locale, path: ['code'], }, }, } }