Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
urluckyturtle01 committed Dec 9, 2024
1 parent def515b commit 820a97b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pages/landing/components/StoriesSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,12 @@ const StoriesSection = ({ insightStories = [] }) => {
Turning insights into impact
</div>
<div className={styles.insightStoriesSectionContent}>
{insightStories
.map((insightStory.link, index) => (
<InsightsStories key={index} insightStory={insightStory} />
{insightStories.map((insightStory, index) => (
<Link href={insightStory.link} key={index}>
<a>
<InsightsStories insightStory={insightStory} />
</a>
</Link>
))}
</div>
</Columns.Col>
Expand Down

0 comments on commit 820a97b

Please sign in to comment.