mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-06 07:56:11 +02:00
29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
import React, { Fragment } from "react"
|
|
|
|
import { HeaderBarebone } from "../../components/HeaderBarebone"
|
|
import { Link } from "../../components/Link"
|
|
import { PageContent } from "../../components/PageContent"
|
|
import { SEO } from "../../components/SEO"
|
|
|
|
function ArchivesPage() {
|
|
return (
|
|
<Fragment>
|
|
<SEO title="Tech Spotlights Archives" />
|
|
<HeaderBarebone title="Welcome to the TPH tech spotlights archives." />
|
|
|
|
<PageContent
|
|
content={
|
|
<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
|