mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
22 lines
631 B
TypeScript
22 lines
631 B
TypeScript
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
|