|
| 1 | +import { Container } from "react-bootstrap"; |
| 2 | + |
| 3 | +// Component: The community tab |
| 4 | +// route: /community |
| 5 | +export function Community() { |
| 6 | + return ( |
| 7 | + <Container> |
| 8 | + <h3>Community Resources</h3> |
| 9 | + <h5>Code of Conduct</h5> |
| 10 | + The Scivision <a href="https://github.com/alan-turing-institute/scivision/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a> sets out the expectations of people participating in the project or events. |
| 11 | + |
| 12 | + <h5>Email Newsletter</h5> |
| 13 | + |
| 14 | + <p>Scivision has a low-volume email newsletter for announcements about the project and forthcoming events (one email per month or so).</p> |
| 15 | + |
| 16 | + <p>Read previous newsletters or subscribe to the list on Substack <a href="https://scivision.substack.com">here</a>.</p> |
| 17 | + |
| 18 | + <p>It is possible to unsubscribe at any time by following the link at the bottom of any email from the list.</p> |
| 19 | + |
| 20 | + <h5>Slack Workspace</h5> |
| 21 | + |
| 22 | + <p>The Scivision Slack workspace is open to anyone interested in: |
| 23 | + <ul> |
| 24 | + <li>Discussing computer vision in the sciences and humanities</li> |
| 25 | + <li>Getting help with computer vision methods, and helping others</li> |
| 26 | + <li>Getting support using the Scivision catalogue and software</li> |
| 27 | + <li>Sharing and finding out about interesting events</li> |
| 28 | + </ul> |
| 29 | + </p> |
| 30 | + |
| 31 | + <p>We aim for this to be a welcome and supportive place to discuss computer vision, share ideas and ask questions. Using (or even intending to use) the Scivision software is not a prerequisite for joining!</p> |
| 32 | + |
| 33 | + <p>To join the Slack Workspace, submit your email address <a href="https://docs.google.com/forms/d/e/1FAIpQLSfDPbsb_CWApnodHlNyOQMQdKhKA9meJi_SAuh8K8dVpbIiDA/viewform?usp=sf_link">here</a> (via a Google Form) and one of the team will invite you.</p> |
| 34 | + |
| 35 | + <h5>Community calls</h5> |
| 36 | + |
| 37 | + <p>Scivision runs an online call (over Zoom) from time to time, generally themed around computer vision or image analysis in a particular domain. There will also be a chance for an introduction to the Scivision project and hear any recent news.</p> |
| 38 | + |
| 39 | + <p>Future events will be advertised on the Slack channel and mailing list.</p> |
| 40 | + |
| 41 | + <h5>GitHub</h5> |
| 42 | + Development of Scivision is hosted on GitHub. |
| 43 | + <ul> |
| 44 | + <li><a href="https://github.com/alan-turing-institute/scivision/discussions">Discussions</a> — ask a question, make a suggestion</li> |
| 45 | + <li><a href="https://github.com/alan-turing-institute/scivision/issues">Issues</a> — report a bug, request a feature</li> |
| 46 | + <li>Code contributions welcome, see the <a href="https://scivision.readthedocs.io/en/latest/contributing.html">contributing guide</a></li> |
| 47 | + </ul> |
| 48 | + |
| 49 | + <h5>Scivision Improvement Proposal Index</h5> |
| 50 | + <a href="https://scivision.readthedocs.io/en/latest/scip_index.html">SCIPI</a> — Community driven design documents, specs and proposals |
| 51 | + |
| 52 | + <h5>Contact the Core Team</h5> |
| 53 | + The Scivision project is run by a team at the Alan Turing Institute. |
| 54 | + |
| 55 | + In addition to the channels above, you can email the team at <a href="mailto:[email protected]">[email protected]</a>. |
| 56 | + </Container> |
| 57 | + ); |
| 58 | +} |
0 commit comments