Skip to content

Commit

Permalink
slice and merge so not showing 2 same rows together
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeFulton committed Mar 10, 2024
1 parent 34da272 commit 8692c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default function Index({
<div className="">
<ToolLargeCardRow tools={toolsList.slice(5,9)} />
<SectionDivider py="py-6" transparentLine={true} />
<ToolIconCardRow withBackground={true} tools={toolsList.slice(5,15)} />
<ToolIconCardRow withBackground={true} tools={[...toolsList.slice(0,5), ...toolsList.slice(10,15)]} />


{/* <div className="flex mt-10">
Expand Down

0 comments on commit 8692c3e

Please sign in to comment.