├── .gitignore ├── src ├── images │ ├── icon.png │ ├── eew-map.png │ ├── EDGI-logo.png │ ├── eew-logo.png │ ├── eew-logo.webp │ ├── eew-map.webp │ ├── funders-css.png │ ├── funders-ddcf.png │ ├── funders-esip.png │ ├── funders-neu.png │ ├── funders-sbu.png │ ├── EEW-Authorship.png │ ├── eew-logo-small.png │ ├── funders-packard.png │ ├── research-covid.jpg │ ├── tutorials-intro.png │ ├── gallery │ │ ├── data-viz.png │ │ ├── data-science.png │ │ ├── report-making.png │ │ ├── research-tracks.png │ │ └── story-gathering.png │ ├── tutorials-jupyter.png │ ├── eew-public-workshop.png │ ├── notebooks-watershed.png │ ├── report-card-tracker.png │ ├── tutorials-watershed.png │ ├── report-card-tracker-es.png │ ├── research-democratizing.png │ ├── tutorials-watersheddoc.png │ └── notebooks-cross-program.png ├── styles │ ├── constants.scss │ ├── tabs.scss │ ├── styles.scss │ └── header.scss ├── components │ ├── Notification.js │ ├── Sidebar.js │ ├── TabTracks.js │ ├── InfoCard.js │ ├── Head.js │ ├── Header.js │ ├── Layout.js │ ├── Footer.js │ ├── HeaderItem.js │ └── ReportCardExplorer.js ├── pages │ ├── about │ │ ├── people.mdx │ │ ├── contact.js │ │ ├── faq.mdx │ │ ├── funding.mdx │ │ ├── press.mdx │ │ └── index.mdx │ ├── data │ │ ├── external-resources.mdx │ │ ├── research.mdx │ │ ├── notebooks.mdx │ │ ├── reports.mdx │ │ └── reports-es.mdx │ ├── 404.js │ ├── learn │ │ ├── tutorials.mdx │ │ └── events.mdx │ └── index.mdx └── helpers │ └── constants.js ├── devnotes.md ├── gatsby-config.js ├── package.json └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/icon.png -------------------------------------------------------------------------------- /src/images/eew-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/eew-map.png -------------------------------------------------------------------------------- /src/images/EDGI-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/EDGI-logo.png -------------------------------------------------------------------------------- /src/images/eew-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/eew-logo.png -------------------------------------------------------------------------------- /src/images/eew-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/eew-logo.webp -------------------------------------------------------------------------------- /src/images/eew-map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/eew-map.webp -------------------------------------------------------------------------------- /src/images/funders-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/funders-css.png -------------------------------------------------------------------------------- /src/images/funders-ddcf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/funders-ddcf.png -------------------------------------------------------------------------------- /src/images/funders-esip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/funders-esip.png -------------------------------------------------------------------------------- /src/images/funders-neu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/funders-neu.png -------------------------------------------------------------------------------- /src/images/funders-sbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/funders-sbu.png -------------------------------------------------------------------------------- /src/images/EEW-Authorship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/EEW-Authorship.png -------------------------------------------------------------------------------- /src/images/eew-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/eew-logo-small.png -------------------------------------------------------------------------------- /src/images/funders-packard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/funders-packard.png -------------------------------------------------------------------------------- /src/images/research-covid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/research-covid.jpg -------------------------------------------------------------------------------- /src/images/tutorials-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/tutorials-intro.png -------------------------------------------------------------------------------- /src/images/gallery/data-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/gallery/data-viz.png -------------------------------------------------------------------------------- /src/images/tutorials-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/tutorials-jupyter.png -------------------------------------------------------------------------------- /src/images/eew-public-workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/eew-public-workshop.png -------------------------------------------------------------------------------- /src/images/gallery/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/gallery/data-science.png -------------------------------------------------------------------------------- /src/images/notebooks-watershed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/notebooks-watershed.png -------------------------------------------------------------------------------- /src/images/report-card-tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/report-card-tracker.png -------------------------------------------------------------------------------- /src/images/tutorials-watershed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/tutorials-watershed.png -------------------------------------------------------------------------------- /src/images/gallery/report-making.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/gallery/report-making.png -------------------------------------------------------------------------------- /src/images/report-card-tracker-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/report-card-tracker-es.png -------------------------------------------------------------------------------- /src/images/research-democratizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/research-democratizing.png -------------------------------------------------------------------------------- /src/images/tutorials-watersheddoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/tutorials-watersheddoc.png -------------------------------------------------------------------------------- /src/images/gallery/research-tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/gallery/research-tracks.png -------------------------------------------------------------------------------- /src/images/gallery/story-gathering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/gallery/story-gathering.png -------------------------------------------------------------------------------- /src/images/notebooks-cross-program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainStack/eew-website-rebuild/main/src/images/notebooks-cross-program.png -------------------------------------------------------------------------------- /src/styles/constants.scss: -------------------------------------------------------------------------------- 1 | $lightprimary: #afe0d7; 2 | $primary: #1B7F71; 3 | $midprimary: #54c6b5; 4 | $lightprimary: #afe0d7; 5 | $darkprimary: #4b7f78; 6 | $accent: #e56d13; 7 | 8 | $content-width: 970px; 9 | -------------------------------------------------------------------------------- /src/components/Notification.js: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | 3 | const Notification = () => 4 |
{item.copy}
19 |{description}
10 |{description}
: null} 17 |Press Contact: environmentalenforcementwatch@gmail.com
*/} 9 |
34 | Sorry{" "}
35 |
36 | 😔
37 | {" "}
38 | we couldn’t find what you were looking for.
39 |
40 | {process.env.NODE_ENV === "development" ? (
41 | <>
42 |
43 | Try creating a page in src/pages/.
44 |
45 | >
46 | ) : null}
47 |
48 | Go home.
49 |
