feat(archives): bootstrap what-is-archives from Github

This commit is contained in:
Jean-Philippe Sirois
2019-11-11 15:40:52 -08:00
parent 51eeb489e5
commit 7cc1e4c899
33 changed files with 578 additions and 242 deletions
+21
View File
@@ -0,0 +1,21 @@
import React, { Fragment } from "react"
import { ColumnLink } from "../components/ColumnLink"
import { SEO } from "../components/SEO"
function ResourcesPage() {
return (
<Fragment>
<SEO title="Tech Spotlights Archives" />
<p>Welcome to the TPH tech spotlights archives.</p>
<p>
This regroups the archives of our occasional, temporary channels that
cover a piece of technology that might be unknown to part of our users.
You can find those on{" "}
<ColumnLink to="/about">The Programmer's Hangout</ColumnLink>.
</p>
</Fragment>
)
}
export default ResourcesPage