-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(#352) other layout changes + improved search
- Loading branch information
Showing
12 changed files
with
663 additions
and
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import Head from 'next/head'; | ||
import Link from 'next/link'; | ||
import { Container, Col, Row } from 'react-bootstrap'; | ||
|
||
function Resources(): JSX.Element { | ||
return ( | ||
<Container className="p-3 m-3"> | ||
<Head> | ||
<meta name="description" content="Resources about plant galls" /> | ||
</Head> | ||
<Row> | ||
<Col> | ||
<h1>General Resources</h1> | ||
<ul> | ||
<li> | ||
<Link href="/ref/IDGuide">Our guide to gall identification</Link> | ||
</li> | ||
<li> | ||
<Link href="/filterguide">Detailed descriptions for our key filters</Link> | ||
</li> | ||
<li> | ||
<Link href="/glossary">Glossary for plant and insect terms</Link> | ||
</li> | ||
<li> | ||
<Link href="/refindex">Our reference library</Link> | ||
</li> | ||
<li> | ||
<a href="https://www.inaturalist.org/posts/47564-tips-for-gall-hunting">Advice on finding galls</a> | ||
</li> | ||
<li> | ||
<a href="https://www.inaturalist.org/journal/jeffdc/67593-getting-an-oak-identified"> | ||
Documenting Trees (Oak focused) for identification | ||
</a> | ||
</li> | ||
</ul> | ||
</Col> | ||
</Row> | ||
<Row> | ||
<Col> | ||
<h1>Books</h1> | ||
<ul> | ||
<li> | ||
If you are new to galls <a href="http://charleyeiseman.com/">Charley Eiseman</a> and Noah | ||
Charney's{' '} | ||
<a href="https://bookshop.org/books/tracks-sign-of-insects-other-invertebrates-a-guide-to-north-american-species/9780811736244"> | ||
Tracks & Signs of Insects & Other Invertebrates: A Guide to North American Species | ||
</a>{' '} | ||
is a good place to start learning. It covers a lot more than just galls and is an excellent resource. | ||
</li> | ||
<li> | ||
<a href="https://press.princeton.edu/books/paperback/9780691205762/plant-galls-of-the-western-united-states"> | ||
Russo's guide to galls of the Western US | ||
</a> | ||
</li> | ||
</ul> | ||
</Col> | ||
</Row> | ||
<Row> | ||
<Col> | ||
<h1>Non North American Resources</h1> | ||
<ul> | ||
<li> | ||
To ID galls and other plant symptoms in Europe, visit{' '} | ||
<a href="https://bladmineerders.nl/" target="_blank" rel="noreferrer"> | ||
bladmineerders.nl | ||
</a> | ||
</li> | ||
</ul> | ||
</Col> | ||
</Row> | ||
</Container> | ||
); | ||
} | ||
|
||
export default Resources; |
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.
Oops, something went wrong.