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 UserCell from 'src/components/UserCell'
import Seo from 'src/components/Seo/Seo'
const UserPage = ({ id }) => {
return (
<MainLayout>
<Seo title="User" description="User page" lang="en-US" />
<UserCell id={id} />
</MainLayout>
)
}
export default UserPage