Línea 52... |
Línea 52... |
52 |
<div className='peopleYouMayKnow'>
|
52 |
<div className='peopleYouMayKnow'>
|
53 |
<div className="sd-title d-flex align-items-center justify-content-between">
|
53 |
<div className="sd-title d-flex align-items-center justify-content-between">
|
54 |
<h3>Pulso Diario</h3>
|
54 |
<h3>Pulso Diario</h3>
|
55 |
</div>
|
55 |
</div>
|
56 |
<span>Puntos acumulados: {points}</span>
|
56 |
<span>Puntos acumulados: {points}</span>
|
57 |
<h2>¿Como te sientes hoy?</h2>
|
57 |
<h4>¿Como te sientes hoy?</h4>
|
58 |
{emojisHowAreYouFeel.map(({ link_save, id, image }, index) =>
|
58 |
{emojisHowAreYouFeel.map(({ link_save, id, image }, index) =>
|
59 |
<a key={id} href={link_save} onClick={() => handleEmojiSave(link_save)}>
|
59 |
<a key={id} href={link_save} onClick={() => handleEmojiSave(link_save)}>
|
60 |
<img className='fadedown' src={image} style={{ width: '32px', height: '32px', animationDelay: `${index}00` }} />
|
60 |
<img className='fadedown' src={image} style={{ width: '32px', height: '32px', animationDelay: `${index}00ms` }} />
|
61 |
</a>
|
61 |
</a>
|
62 |
)}
|
62 |
)}
|
63 |
<h2>¿Como esta el clima en la organización ?</h2>
|
63 |
<h4>¿Como esta el clima en la organización ?</h4>
|
64 |
{emojisClimateOnYourOrganization.map(({ link_save, id, image }, index) =>
|
64 |
{emojisClimateOnYourOrganization.map(({ link_save, id, image }, index) =>
|
65 |
<a key={id} href={link_save} onClick={() => handleEmojiSave(link_save)}>
|
65 |
<a key={id} href={link_save} onClick={() => handleEmojiSave(link_save)}>
|
66 |
<img className='fadedown' src={image} style={{ width: '32px', height: '32px', animationDelay: `${index}00` }} />
|
66 |
<img className='fadedown' src={image} style={{ width: '32px', height: '32px', animationDelay: `${index}00ms` }} />
|
67 |
</a>
|
67 |
</a>
|
68 |
)}
|
68 |
)}
|
69 |
</div>
|
69 |
</div>
|
70 |
)
|
70 |
)
|
71 |
}
|
71 |
}
|