Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Features/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Features = (props) => {
: (<div className="small-card-container">
{props.redirectLinkWithImage.map((item) => (
<Link key={item.text} className="small-card" to={item.redirect}>
<img src={item.image} width={40} />
<img src={item.image} width={40} alt={item.alt} />
<span>{item.text}</span>
</Link>
))}
Expand Down
2 changes: 2 additions & 0 deletions src/sections/Home/FeaturesContainer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ const FeaturesContainer = () => {
{
text: "Amazon Web Services",
image: isDark ? AWSLogoDark : AWSLogoLight,
alt: "Amazon Web Services Logo",
redirect:
"/cloud-native-management/generate-aws-architecture-diagram",
},
{
text: "Google Cloud Platform",
image: GCPLogo,
alt: "Logo Google Cloud Platform",
redirect:
"/cloud-native-management/generate-gcp-architecture-diagram",
},
Expand Down