Skip to content

Commit 31657d7

Browse files
authored
Updates to Community tab (#604)
1 parent 7e855cd commit 31657d7

File tree

3 files changed

+68
-17
lines changed

3 files changed

+68
-17
lines changed

frontend/src/App.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ h4 {
1111
margin-bottom: 1.5ex;
1212
}
1313

14+
h5 {
15+
font-weight: bold;
16+
font-size: 100%;
17+
margin-top: 2.0ex;
18+
martin-bottom: 1.0ex;
19+
}
20+
1421
.brandLogo {
1522
width: 100%;
1623
max-width:40%;

frontend/src/App.js

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ import {
5454

5555
import { Home } from "./home.js"
5656

57+
import { Community } from "./Community.js"
58+
5759
// Component: The app
5860
//
5961
// Display the header and sidebar, and handle routing with React Router
@@ -383,23 +385,7 @@ function App() {
383385
} />
384386

385387
<Route path="/community" element={
386-
<Container>
387-
<h3>Community Resources</h3>
388-
<ul>
389-
<li>
390-
Our <a href="https://github.com/alan-turing-institute/scivision/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a>
391-
</li>
392-
<li>
393-
<a href="https://github.com/alan-turing-institute/scivision/discussions">
394-
GitHub Discussions
395-
</a>
396-
</li>
397-
<li>
398-
<a href="https://scivision.readthedocs.io/en/latest/scip_index.html">SCIPI</a>, the Scivision Improvement Proposal Index: Community driven design documents, specs and proposals
399-
</li>
400-
<li>Email the Scivision core maintainers at <a href="mailto:[email protected]">[email protected]</a></li>
401-
</ul>
402-
</Container>
388+
<Community />
403389
} />
404390
</Routes>
405391
</Container>

frontend/src/Community.js

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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> &mdash; ask a question, make a suggestion</li>
45+
<li><a href="https://github.com/alan-turing-institute/scivision/issues">Issues</a> &mdash; 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> &mdash; 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

Comments
 (0)