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 { useTranslation } from 'next-i18next' import Layout from 'site/components/layouts/bare' import Navigation, { Icons } from 'shared/components/navigation/primary' import DownIcon from 'shared/components/icons/down.js' const HomePage = (props) => { const app = useApp() const { t } = useTranslation(['homepage', 'ograph']) return (
 

FreeSewing .org

{t('scrollDownToLearnMore')}

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(locale)), } } }