1
0
Fork 0
freesewing/sites/dev/components/help-us.js

21 lines
595 B
JavaScript
Raw Normal View History

2021-12-31 11:33:57 +01:00
import Popout from 'shared/components/popout.js'
2022-12-03 11:25:02 -06:00
const HelpUs = ({ slug = '/' }) => (
2021-12-31 11:33:57 +01:00
<details className="mt-4">
<summary>Click here to learn how you can help us improve this page</summary>
2022-10-03 17:48:23 +02:00
<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.
2021-12-31 11:33:57 +01:00
</Popout>
</details>
)
export default HelpUs