Skip to content

Commit

Permalink
Merge pull request #49 from ObedVega/add-developers-homepage
Browse files Browse the repository at this point in the history
fix base URL
  • Loading branch information
ObedVega authored Jun 26, 2024
2 parents 4cbc9bf + f75d721 commit e293e09
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/DevelopersHomepage/JumpIn.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ function Feature({ imgBullet, imgBullet2, img, title, description, href, href2,
{description && <p>{description}</p>}
<div className={clsx(styles.dot)}>
<img src={imgBullet} className={clsx(styles.dotPad)}/>
<a href={href} target='_blank' className={clsx(styles.links)}>{descriptionLink}</a>
<a href={href}
target={descriptionLink === 'View Getting started' ? '_self' : '_blank'}
className={clsx(styles.links)}
>
{descriptionLink}
</a>
</div>
<br/>
<div className={clsx(styles.dot)}>
Expand Down

0 comments on commit e293e09

Please sign in to comment.