// 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/index.mjs' import { PageLink } from 'shared/components/page-link.mjs' import { BareLayout } from 'site/components/layouts/bare.mjs' import { ForceAccountCheck } from 'shared/components/account/force-account-check.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

What is FreeSewing?

(by ChatGPT)

Freesewing is an open-source pattern making software that allows users to generate custom sewing patterns based on their own measurements. It is designed to be flexible and customizable, and can be used to create a wide range of garments, from simple t-shirts and skirts to more complex dresses and jackets.

Freesewing is available for free, and users can access a wide range of pre-made patterns or create their own from scratch. The software is designed to be easy to use, with an intuitive interface that guides users through the process of creating a pattern step-by-step.

In addition to the pattern making software, freesewing also has an active online community of sewists and pattern makers who share tips, techniques, and advice on all aspects of sewing. The community also collaborates on creating new patterns and improving existing ones, and users can contribute their own patterns to the project as well.

Overall, freesewing is a powerful tool for anyone interested in sewing and pattern making, whether they are seasoned professionals or beginners just starting out.

) export default HomePage export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale)), page: { locale, path: [], }, }, } }