resources: set up home page

This commit is contained in:
Jean-Philippe Sirois
2019-09-17 01:58:15 -04:00
parent 2d16e9489c
commit 5bd0787112
5 changed files with 308 additions and 2 deletions
+9 -1
View File
@@ -1,12 +1,20 @@
import { Link } from "gatsby"
import React, { Fragment } from "react"
import { ResourcesList } from "../components/ResourcesList"
import { SEO } from "../components/SEO"
function ResourcesPage() {
return (
<Fragment>
<SEO title="Resources" />
the resources
<p>Welcome to the TPH resources.</p>
<p>
This is meant as a small knowledge base for commonly answered questions
on our Discord community,{" "}
<Link to="/about">The Programmer's Hangout</Link>.
</p>
<ResourcesList />
</Fragment>
)
}