mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-05 23:43:37 +02:00
feat(archives): bootstrap what-is-archives from Github
This commit is contained in:
@@ -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
|
||||
@@ -1,7 +1,7 @@
|
||||
import React, { Fragment } from "react"
|
||||
|
||||
import packageJson from "../../package.json"
|
||||
import { ResourcesLink } from "../components/ResourcesLink"
|
||||
import { ColumnLink } from "../components/ColumnLink"
|
||||
import { ResourcesList } from "../components/ResourcesList"
|
||||
import { SEO } from "../components/SEO"
|
||||
|
||||
@@ -13,11 +13,11 @@ function ResourcesPage() {
|
||||
<p>
|
||||
This is meant as a small knowledge base for commonly answered questions
|
||||
on our Discord community,{" "}
|
||||
<ResourcesLink to="/about">The Programmer's Hangout</ResourcesLink>.
|
||||
<ColumnLink to="/about">The Programmer's Hangout</ColumnLink>.
|
||||
</p>
|
||||
<p>
|
||||
All of it is open source, and you can contribute to it on{" "}
|
||||
<ResourcesLink to={packageJson.repository.url}>GitHub</ResourcesLink>.
|
||||
<ColumnLink to={packageJson.repository.url}>GitHub</ColumnLink>.
|
||||
</p>
|
||||
<ResourcesList />
|
||||
</Fragment>
|
||||
|
||||
Reference in New Issue
Block a user