// Dependencies import { serverSideTranslations } from 'next-i18next/serverSideTranslations' //import { useTranslation } from 'next-i18next' import Head from 'next/head' // Components import { PageWrapper } from 'shared/components/wrappers/page.mjs' import { Popout } from 'shared/components/popout.mjs' import { PageLink } from 'shared/components/page-link.mjs' /* * 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 HomePage = ({ page }) => ( Welcome to FreeSewing.org
Create homepage. Meanwhile check
) export default HomePage export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale)), page: { locale, path: [], }, }, } }