Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 7a377287 authored by Christophe Chaudier's avatar Christophe Chaudier :rocket:
Browse files

Merge branch '11-fix-add-alternative-text-on-images' into 'main'

Resolve "fix: add alternative text on images"

Closes #11

See merge request lydra/www/compagnons-devops.fr!10
parents 2fe1111c ab0b7655
No related branches found
No related tags found
1 merge request!10Resolve "fix: add alternative text on images"
Pipeline #10898 passed
...@@ -24,7 +24,7 @@ function Feature({Svg, title}) { ...@@ -24,7 +24,7 @@ function Feature({Svg, title}) {
return ( return (
<div className={styles.featuresContainer}> <div className={styles.featuresContainer}>
<div className={styles.featuresBloc}> <div className={styles.featuresBloc}>
<img src={Svg} className={styles.featureSvg} role="img" /> <img src={Svg} className={styles.featureSvg} alt=""/>
<p>{title}</p> <p>{title}</p>
</div> </div>
</div> </div>
......
...@@ -21,7 +21,7 @@ const FeatureList = [ ...@@ -21,7 +21,7 @@ const FeatureList = [
function Feature({title}) { function Feature({title}) {
return ( return (
<li className={styles.listElement}> <li className={styles.listElement}>
<img className={styles.checkmark} src={checkmark} /> <img className={styles.checkmark} src={checkmark} alt=""/>
<p> {title} </p> <p> {title} </p>
</li> </li>
); );
......
...@@ -26,8 +26,8 @@ function Feature({Svg, title}) { ...@@ -26,8 +26,8 @@ function Feature({Svg, title}) {
return ( return (
<div className={clsx('col col--3')}> <div className={clsx('col col--3')}>
<div className={styles.svgBackground}> <div className={styles.svgBackground}>
<img src={Svg} className={styles.featureSvg} role="img" /> <img src={Svg} className={styles.featureSvg} alt=""/>
<div className='c'></div> </div> </div>
<div className="text--center padding-horiz--md"> <div className="text--center padding-horiz--md">
<p>{title}</p> <p>{title}</p>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment