import Page from 'site/components/wrappers/page.js' import useApp from 'site/hooks/useApp.js' import Head from 'next/head' import HelpUs from 'site/components/help-us.js' import Link from 'next/link' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' import Layout from 'site/components/layouts/bare' import Navigation, { Icons } from 'shared/components/navigation/primary' const HomePage = (props) => { const app = useApp() return (

FreeSewing .dev

Documentation for FreeSewing contributors & developers

To learn more about FreeSewing and try our platform go to freesewing.org

Support FreeSewing

FreeSewing is fuelled by a voluntary subscription model

If you think what we do is worthwhile, and if you can spare a few coins each month without hardship, please support our work

Become a Patron
) } export default HomePage export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations('en')), } } }