Skip to content

Commit 11b431b

Browse files
authored
Merge pull request #6850 from Fireentity/enhancement/6829-homepage-seo
fix: add missing alt attributes in homepage
2 parents 4bcb4fd + 4e541a3 commit 11b431b

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/components/Features/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const Features = (props) => {
9595
: (<div className="small-card-container">
9696
{props.redirectLinkWithImage.map((item) => (
9797
<Link key={item.text} className="small-card" to={item.redirect}>
98-
<img src={item.image} width={40} />
98+
<img src={item.image} width={40} alt={item.alt} />
9999
<span>{item.text}</span>
100100
</Link>
101101
))}

src/sections/Home/FeaturesContainer/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,14 @@ const FeaturesContainer = () => {
5252
{
5353
text: "Amazon Web Services",
5454
image: isDark ? AWSLogoDark : AWSLogoLight,
55+
alt: "Amazon Web Services Logo",
5556
redirect:
5657
"/cloud-native-management/generate-aws-architecture-diagram",
5758
},
5859
{
5960
text: "Google Cloud Platform",
6061
image: GCPLogo,
62+
alt: "Logo Google Cloud Platform",
6163
redirect:
6264
"/cloud-native-management/generate-gcp-architecture-diagram",
6365
},

0 commit comments

Comments
 (0)