+
+ RESOURCE NOT FOUND
+ You just hit a route that doesn't exist... the sadness.
+
+ {({ navigate, location }) => getPossibleResources(location, data)}
+
+
+)
+export const query = graphql`
+ query {
+ allFile(filter: { sourceInstanceName: { eq: "resources" } }) {
+ edges {
+ node {
+ relativePath
+ }
+ }
+ }
+ }
+`
diff --git a/src/pages/resources.tsx b/src/pages/resources/index.tsx
similarity index 75%
rename from src/pages/resources.tsx
rename to src/pages/resources/index.tsx
index b242598..f5a4931 100644
--- a/src/pages/resources.tsx
+++ b/src/pages/resources/index.tsx
@@ -1,9 +1,9 @@
import React, { Fragment } from "react"
-import packageJson from "../../package.json"
-import { Link } from "../components/Link"
-import { ResourcesList } from "../components/ResourcesList"
-import { SEO } from "../components/SEO"
+import packageJson from "../../../package.json"
+import { Link } from "../../components/Link"
+import { ResourcesList } from "../../components/ResourcesList"
+import { SEO } from "../../components/SEO"
function ResourcesPage() {
return (