1
0
Fork 0

feat(dev): Ported dev site to named exports

This commit is contained in:
joostdecock 2023-01-29 17:36:15 +01:00
parent 595417a23b
commit db789180b6
22 changed files with 287 additions and 315 deletions

View file

@ -1,20 +0,0 @@
import Popout from 'shared/components/popout.js'
const HelpUs = ({ slug = '/' }) => (
<details className="mt-4">
<summary>Click here to learn how you can help us improve this page</summary>
<Popout tip className="max-w-prose">
<h6>Found a mistake?</h6>
You can{' '}
<a
href={`https://github.com/freesewing/freesewing/edit/develop/markdown/dev/${slug}/en.md`}
className="text-secondary font-bold"
>
edit this page on Github
</a>{' '}
and help us improve our documentation.
</Popout>
</details>
)
export default HelpUs