Skip to content

Commit

Permalink
added / to image src (#1678)
Browse files Browse the repository at this point in the history
* added / to image src

* cleanup

* typo
  • Loading branch information
mertbagt authored Jan 17, 2025
1 parent a70398a commit 3aa776a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions components/Policies/PolicyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,19 @@ export default function PolicyPage({
)}
>
<Col xs={12} className={style.blueBox}>
<Image src="handShake.jpg" alt="" className={style.symbol}></Image>
<Image src="/handShake.jpg" alt="" className={style.symbol}></Image>
<p className={style.values}>Humility</p>
</Col>
<Col xs={12} className={style.blueBox}>
<Image src="compassion.png" alt="" className={style.symbol}></Image>
<Image
src="/compassion.png"
alt=""
className={style.symbol}
></Image>
<p className={style.values}>Compassion</p>
</Col>
<Col xs={12} className={style.blueBox}>
<Image src="lightBulb.png" alt="" className={style.symbol}></Image>
<Image src="/lightBulb.png" alt="" className={style.symbol}></Image>
<p className={style.values}>Curiosity</p>
</Col>
</Row>
Expand Down

0 comments on commit 3aa776a

Please sign in to comment.