/* * This page is auto-generated. Do not edit it by hand. */ import { Opal } from 'designs/opal/src/index.mjs' // Dependencies import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import { nsMerge } from 'shared/utils.mjs' // Components import { PageWrapper, ns as pageNs } from 'shared/components/wrappers/page.mjs' import { Workbench, ns as wbNs } from 'shared/components/workbench/new.mjs' import { WorkbenchLayout } from 'site/components/layouts/workbench.mjs' // Translation namespaces used on this page const ns = nsMerge('opal', wbNs, pageNs) const NewOpalPage = ({ page, docs }) => ( ) export default NewOpalPage export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale, ns)), page: { locale, path: ['new', 'opal'], title: 'Opal', }, }, } }