Compare commits

...

3 Commits

Author SHA1 Message Date
victorAnumudu 02075a95c0 images added for each selected item 2024-01-31 17:20:41 +01:00
victorAnumudu 2873b22183 added logo image 2024-01-31 16:32:59 +01:00
ameye 7b01bea019 Merge branch 'image-addition' of WrenchBoard/WrenchBoardMainSite into master 2024-01-31 01:21:36 +00:00
6 changed files with 21 additions and 2 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

+21 -2
View File
@@ -66,9 +66,28 @@ const Main = ({gredient}) => {
<div className="right_img position-relative d-flex flex-column justify-content-start align-items-center">
<div className='d-flex flex-column justify-content-start align-items-center'>
{/* <img className="moving_position_animatin right_img_one" src={img2} alt="image" /> */}
<img className="moving_position_animatin right_img_two" src={img3} alt="image" />
<img
className="moving_position_animatin right_img_two"
// src={img3}
src={
activeImg == 'reward-goals' ? localImgLoad(`images/home/box-reward.png`)
:
activeImg == 'assign-chores' ? localImgLoad(`images/home/box-chores.png`)
:
activeImg == 'financial-edu' ? localImgLoad(`images/home/box-financial.png`)
:
activeImg == 'family-connect' ? localImgLoad(`images/home/box-family.png`)
:
null
}
alt="image"
/>
</div>
<img className="moving_position_animatin right_img_three position-relative" src={img4} alt="image" />
<img
className="moving_position_animatin right_img_three position-relative"
src={localImgLoad(`images/home/wrench-side-logo-1.png`)}
alt="image"
/>
</div>
</div>
</div>