-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previously, the only means of contact shown on this website was the hello@ email. This new contact page lists preferred means of communication under various scenarios. hello@ is still appropriate in the case of setting up a new group for Nextstrain Groups, but all the other references to the email have been replaced with a link to the new page.
- Loading branch information
Showing
9 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from "react"; | ||
import GenericPage from "../layouts/generic-page"; | ||
import { BigSpacer, FlexCenter} from "../layouts/generalComponents"; | ||
import { H1, NarrowFocusParagraph } from "../components/splash/styles"; | ||
|
||
|
||
const Contact = props => ( | ||
<GenericPage location={props.location}> | ||
<H1>Contact Us</H1> | ||
|
||
<FlexCenter> | ||
<NarrowFocusParagraph> | ||
We are a small team, but connecting with users is important to us. | ||
<br/> | ||
<br/> | ||
If you have a general question about Nextstrain, we encourage you to post on our{" "} | ||
<a href="https://discussion.nextstrain.org" target="_blank" rel="noreferrer noopener"> | ||
discussion forum | ||
</a>, where both Nextstrain team members and other community members can assist you. | ||
<br/> | ||
<br/> | ||
To send a bug report or feature request, please open an issue in one of our{" "} | ||
<a href="https://github.com/orgs/nextstrain/repositories"> | ||
GitHub repositories | ||
</a>. | ||
<br/> | ||
<br/> | ||
For private inquiries, you can reach us at | ||
hello<span style={{display: "none"}}>obfuscate</span>@nextstrain.org. | ||
<br/> | ||
<br/> | ||
We also host office hours via Zoom every week on Thursdays at 10AM US Pacific time. | ||
Email us for the meeting link. | ||
</NarrowFocusParagraph> | ||
</FlexCenter> | ||
|
||
<BigSpacer/> | ||
</GenericPage> | ||
); | ||
|
||
export default Contact; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters