feat(404): add collections 404 page to tech spotlights

This commit is contained in:
Khinshan Khan
2020-01-26 12:33:31 -05:00
committed by Jean-Philippe Sirois
parent a796facdb1
commit 849bd0be02
3 changed files with 38 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
import React, { Fragment } from "react"
import { Link } from "../../components/Link"
import { SEO } from "../../components/SEO"
function ArchivesPage() {
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 <Link to="/about">The Programmer's Hangout</Link>.
</p>
</Fragment>
)
}
export default ArchivesPage