mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import React from "react"
|
|
|
|
import { ResourcesLayout } from "../components/ResourcesLayout"
|
|
import { SEO } from "../components/SEO"
|
|
|
|
function ResourcesPage() {
|
|
return (
|
|
<ResourcesLayout>
|
|
<SEO title="Resources" />
|
|
the resources
|
|
</ResourcesLayout>
|
|
)
|
|
}
|
|
|
|
export default ResourcesPage
|