Skip to content

Commit

Permalink
feat: forks
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevo David committed Oct 19, 2023
1 parent 3e2aee4 commit 3c3a8db
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/pages/bonuses.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@ import LayoutMain from 'layouts/layouts/layout-main';

import twitter from '~/helpers/twitter';

const Home = ({ twitter, devto, findStars, productHunt }) => (
const Home = ({ twitter, devto, findStars, productHunt, findForks }) => (
<LayoutMain
seo={{
isRobotsNoindexPage: true,
}}
absolute={false}
withoutFooter
>
<Hero twitter={twitter} devto={devto} findStars={findStars} productHunt={productHunt} />
<Hero
twitter={twitter}
devto={devto}
findStars={findStars}
productHunt={productHunt}
findForks={findForks}
/>
<JoinUs />
</LayoutMain>
);
Expand All @@ -24,6 +30,7 @@ Home.propTypes = {
devto: PropTypes.bool,
findStars: PropTypes.array,
productHunt: PropTypes.object,
findForks: PropTypes.array,
};

export async function getServerSideProps(context) {
Expand Down

1 comment on commit 3c3a8db

@vercel
Copy link

@vercel vercel bot commented on 3c3a8db Oct 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.