1
0
Fork 0

feat(fs.dev): Added HelpUs component

This commit is contained in:
Joost De Cock 2021-12-31 11:33:57 +01:00
parent 4aa7cafb28
commit 787fde18bb
4 changed files with 55 additions and 70 deletions

View file

@ -4,6 +4,7 @@ import Link from 'next/link'
import { posts } from 'site/prebuild/strapi.blog.en.js'
import orderBy from 'lodash.orderby'
import TimeAgo from 'react-timeago'
import HelpUs from 'site/components/help-us.js'
const strapi = "https://posts.freesewing.org"
@ -55,6 +56,7 @@ const BlogIndexPage = (props) => {
.map(post => <Preview app={app} post={post} key={post.slug}/>)
}
</div>
<HelpUs slug='/blog' />
</Page>
)
}