-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81bf73e
commit d479d0a
Showing
8 changed files
with
117 additions
and
14 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
Binary file not shown.
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,42 @@ | ||
import { Box, Typography } from "@mui/material"; | ||
import Copyright from "../components/Copyright"; | ||
|
||
export default function Contribute() { | ||
return ( | ||
<> | ||
<Box sx={{ p: 2 }}> | ||
<Typography variant="h4" gutterBottom> | ||
Contribute your data | ||
</Typography> | ||
<Typography variant="body1" paragraph> | ||
If you're interested in adding a dataset to the PaleoHURDAT database, | ||
whether it's a new study you're involved with, or an older record that | ||
was previously overlooked or unavailable, follow these steps: | ||
</Typography> | ||
|
||
<ol> | ||
<li> | ||
Check that the data meet the{" "} | ||
<a href="/about">criteria for inclusion</a>. | ||
</li> | ||
<li> | ||
Format the data according to our{" "} | ||
<a href="/Site_Example.xlsm" target="_blank"> | ||
excel template | ||
</a> | ||
. | ||
</li> | ||
<li> | ||
Please send your completed data excel template as an email | ||
attachment to{" "} | ||
<a href="mailto:[email protected]">[email protected]</a> and{" "} | ||
<a href="mailto:[email protected]">[email protected]</a>{" "} | ||
</li> | ||
</ol> | ||
</Box> | ||
<Box sx={{ p: 2, textAlign: "center" }}> | ||
<Copyright /> | ||
</Box> | ||
</> | ||
); | ||
} |