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

19 lines
584 B
JavaScript
Raw Normal View History

import { Popout } from 'shared/components/popout.mjs'
2021-12-31 11:33:57 +01:00
export 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>
)