Mass cull of old routes

This commit is contained in:
Kurt Hutten
2020-11-19 19:17:16 +11:00
parent 26e291a27b
commit eeb9616e1d
38 changed files with 5 additions and 1676 deletions

View File

@@ -1,15 +0,0 @@
import MainLayout from 'src/layouts/MainLayout'
import PartCell from 'src/components/PartCell'
import Seo from 'src/components/Seo/Seo'
const PartPage = ({ id }) => {
return (
<MainLayout>
<Seo title="Part" description="Part page" lang="en-US" />
<PartCell id={id} />
</MainLayout>
)
}
export default PartPage